Trevor Geene
Trevor Geene

Reputation: 519

Is "sass --watch" used once per project or every time you are making changes?

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

Answers (1)

Anurag Srivastava
Anurag Srivastava

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

Related Questions