Reputation: 519
I am looking to start working with SASS/SCSS and want some clarification.
If I run the line sass --watch app/sass:public/stylesheets
(per the site's example); do I have to type this into the command line every time I want to work on the project or just when starting up a project?
I don't know if this matters but I am developing on a Windows Machine.
Upvotes: 0
Views: 408
Reputation: 14413
You will need this command running as long as you are making changes to your scss
files and want them to compile to css
. So yes, every time.
Upvotes: 1