Answers for "how to compile sass files from cmd"

CSS
0

How to convert directory SASS/SCSS to CSS via command line?

sass --watch input.scss output.css
Posted by: Guest on December-20-2021
-2

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