Answers for "sass compile commands"

CSS
3

scss sass watch command line

sass --watch scss:css
Posted by: Guest on April-27-2020
-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
Posted by: Guest on April-25-2021

Browse Popular Code Answers by Language