Last active
April 9, 2020 11:07
-
-
Save mohnatus/a370f4488e90159aa7bacf4b2e52d950 to your computer and use it in GitHub Desktop.
SCSS handle
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
| { | |
| "devDependencies": { | |
| "autoprefixer": "^9.7.3", | |
| "node-sass": "^4.13.0", | |
| "postcss-cli": "^6.1.3" | |
| }, | |
| "scripts": { | |
| "css:dev": "node-sass src/scss/style.scss style.css -w", | |
| "css:prebuild": "node-sass src/scss/style.scss style.css", | |
| "css:postcss": "postcss style.css -r --use autoprefixer -c postcss.config.js", | |
| "css:build": "npm run css:prebuild && npm run css:postcss" | |
| }, | |
| "browserslist": [ | |
| "> 1%", | |
| "last 3 version" | |
| ] | |
| } |
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
| module.exports = { | |
| plugins: { | |
| autoprefixer: require('autoprefixer'), | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment