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.
Currently it is impossible to compile directory with source maps output.
node-sass --source-map=true -r -o ./css ./scss outputs all maps into one file ./css/scss.css.map which contains sourcemap content for last compiled file.
If I specify directory for source maps node-sass --source-map=css -r -o ./css ./scss then it throws an error
Rendering Complete, saving .css file...
ErrorError: EISDIR, open '/home/kkopachev/dev/css'
Currently it is impossible to compile directory with source maps output.
node-sass --source-map=true -r -o ./css ./scss
outputs all maps into one file./css/scss.css.map
which contains sourcemap content for last compiled file.If I specify directory for source maps
node-sass --source-map=css -r -o ./css ./scss
then it throws an errorversion info
multi-file compilation was added in #838
The text was updated successfully, but these errors were encountered: