I am note quite sure if this is even possible with this plugin, but my current problem is that I maintain a large SCSS project, which has three sides and I actually want three different CSS files to be compiled while saving.
I have three main files:
- core-something_1.scss
- core-something_2.scss
- List item
core-something_3.scss
All of there files need the same reset colors etc. This is why they are all in one SCSS project. To be able to compile I need to add the comment:
// main: ../core-something_1.scss
This will only compile one file, which makes sense, but is there a possibility to add smth. like this:
// main: "../core-something_1.scss", "../core-something_2.scss", "../core-something_3.scss"
The result will be that it autocompiles three files for me. Best case would be to get rid of these comments, and just auto-check where the scss sub-files are called and compile them. I used to work on "Coda by Panic" but swiched to Atom some weeks ago. In Coda everything worked fine without any comments. Maybe somebody can help. Thanks! :)
Link to plugin: https://github.com/armin-pfaeffle/sass-autocompile