Created
December 29, 2018 11:47
-
-
Save moonglum/c0827f81f14b100c8fe66501bd591e09 to your computer and use it in GitHub Desktop.
Example of using faucet with nunjucks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let path = require("path"); | |
module.exports = { | |
sass: [{ | |
source: "./src/app.scss", | |
target: "./dist/app.css" | |
}], | |
nunjucks: [{ | |
source: "./src/index.njk", | |
target: "./dist/index.html" | |
}], | |
manifest: { | |
webRoot: "./dist" | |
}, | |
watchDirs: ["./src"] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "example", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"compile": "faucet --fingerprint --compact", | |
"watch": "faucet --watch --liveserve 8080" | |
}, | |
"keywords": [], | |
"author": "Lucas Dohmen <[email protected]> (https://lucas.dohmen.io/)", | |
"license": "ISC", | |
"dependencies": { | |
"faucet-pipeline-core": "faucet-pipeline/faucet-pipeline-core#35c3", | |
"faucet-pipeline-sass": "faucet-pipeline/faucet-pipeline-sass#35c3", | |
"faucet-pipeline-nunjucks": "faucet-pipeline/faucet-pipeline-nunjucks" | |
}, | |
"devDependencies": { | |
"live-server": "^1.2.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment