You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
I'm having trouble watching a directory with multiple SASS files using the following command line : .\node_modules\.bin\node-sass --sourcemap -w .\sass -o .\css
As far as I can tell, this is because at line 228 of the node-sass script : var graphOptions = { loadPaths: options.includePath };
the extensions are not specified. I've changed the line to : var graphOptions = { loadPaths: options.includePath, extensions : ["scss", "sass", "css"] };
and it works perfectly.
The text was updated successfully, but these errors were encountered:
xzyfer
added a commit
to xzyfer/node-sass
that referenced
this issue
Aug 17, 2015
Hi,
I'm having trouble watching a directory with multiple SASS files using the following command line :
.\node_modules\.bin\node-sass --sourcemap -w .\sass -o .\css
As far as I can tell, this is because at line 228 of the node-sass script :
var graphOptions = { loadPaths: options.includePath };
the extensions are not specified. I've changed the line to :
var graphOptions = { loadPaths: options.includePath, extensions : ["scss", "sass", "css"] };
and it works perfectly.
The text was updated successfully, but these errors were encountered: