Created
November 3, 2015 22:52
-
-
Save chrisforrette/67f4303dc318d92f5cde to your computer and use it in GitHub Desktop.
Build/watch scripts for node-sass
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
{ | |
"scripts": { | |
"watch:css": "nodemon --watch static/scss --ext scss,json --exec \"npm run build:css\"", | |
"build:css": "node-sass ./static/scss/app.scss --precision 7 --stdout --source-map-embed --include-path ./node_modules/ | postcss -u autoprefixer -o ./static/build/css/app.css", | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment