Created
April 8, 2018 19:27
-
-
Save Luciaisacomputer/58cd875261d5590b18405f9cefb77c5a to your computer and use it in GitHub Desktop.
Use Sass Quickly
This file contains hidden or 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": "SOME_NAME_HERE", | |
"version": "1.0.0", | |
"description": "", | |
"scripts": { | |
"css": "node-sass --output-style compressed --include-path scss src/scss/index.scss style.css", | |
"watch": "nodemon -e scss -x \"npm run css\"" | |
}, | |
"repository": { | |
"type": "git", | |
"url": "" | |
}, | |
"author": "Luke Pettway", | |
"license": "MIT", | |
"devDependencies": { | |
"node-sass": "^4.5.3", | |
"nodemon": "^1.11.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment