Currently, I have two SCSS files that need to be compiled into separate CSS files.
For one of the SCSS files, my script looks like this:
"watch:sass": "node-sass assets/stylesheets/custom.scss assets/stylesheets/custom.css -w",
"compile:sass": "node-sass assets/stylesheets/custom.scss assets/stylesheets/custom.comp.css",
I'm now trying to figure out how to add another similar compilation for the second SCSS file. Any suggestions?