I'm learning SASS and would like to know how to update a .css file by sass, when the .scss file and the css are in different folders. For example:
style.scss is in the scss folder and style.css is in the css folder.
I understand that the command style.scss:style.css
generates the file in the same folder, what would be the command to generate it in different folders?
Thank you!