Successfully got my SASS up and running with the help of fantastic documentation available everywhere. The guide I followed was http://sass-lang.com/guide
.
sass --watch myfolder/css
Running a specific command worked like a charm, enabling every change in .scss files to be compiled into fully packaged and minified .css files. Excellent!
However, after installing the phpStorm IDE which comes equipped with built-in file watchers for SASS, jsUglify, etc., there is no longer a need for SASS to run its own watches within a designated directory. This has also led to some issues when syncing changes from other developers, causing errors due to relative paths in SCSS file inputs.
This setup not only drains CPU resources but also results in frequent errors.
In short, I needed to disable/remove the separate watcher I set up on Mac OSX via terminal, but despite thorough searches through Google and the documentation, I couldn't find a solution.