Discovering the wonders of Sass has been truly amazing, but I find myself looking for a more efficient way to streamline my coding process. Opening cmd prompt, changing directories, and running sass --watch sass.scss:style.css
every time I restart my computer is starting to feel cumbersome.
Is there a permanent solution to avoid this repetitive step in existing projects? And what if I decide to break up my Sass files - do I need to run the command
sass --watch anotherSass.scss:style.css
each time?
SUMMARIZED: What is the most effective way to monitor changes in .sass files without relying on web-based tools? If manually running the command is the best option, then so be it, but I'm open to any suggestions that can help me eliminate this extra step. Just started exploring Sass today to enhance my workflow, so any insights would be greatly appreciated!