I have the following project:
package.json
yarn.lock
node_modules/
src/
pages/
home/
home.html
_home.scss
about/
about.html
_about.scss
index.html
styles/
global.scss
It is my first time using sass, but I understand that it needs to be compiled to normal css... My question is: do I have to compile all my sass files one by one?
Is it possible to run a yarn script targeting all the scss files of the project?
package.json
-------------
"scripts": {
"build-sass": "run something here",
}
Remember, I am newbie with the scss technology.