sass compile scss code example
Example 1: how to compile scss to css
// Install node-sass
npm i node-sass
// In package.json:
"scripts": {
...
"scss": "node-sass — watch scss -o css"
}
// Run the compilation
npm run scss
Example 2: sass to scss
# You can do it with SASS itself
# Nevermind these malware infested sites below
sass-convert style.sass style.scss