-
-
Notifications
You must be signed in to change notification settings - Fork 430
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
When use indentedSyntax
option, have to use .scss
to import scss file
#135
Comments
+1, it would be awesome if I don't have to check extension before import module's stylesheets. e.g. @import './node_modules/susy/sass/susy'
@import './node_modules/breakpoint-sass/stylesheets/breakpoint'
@import 'foundation/susy_config' instead of @import './node_modules/susy/sass/susy.scss'
@import './node_modules/breakpoint-sass/stylesheets/breakpoint.scss'
@import 'foundation/susy_config' |
I am assuming you have |
Hello, @jorrit {
test: /\.scss$|\.sass$/,
loader: ExtractTextPlugin.extract('css-loader?sourceMap!autoprefixer-loader?{browsers:["last 2 version"]}!sass-loader?indentedSyntax&sourceMap&sourceMapContents')
} |
Could you guys check out the current master branch and check if it works for you? I've heavily refactored the import mechanism and need more tests. |
Hello @jhnns |
Thx. That's what I wanted to hear 👍 😀. |
Waiting for the next version 👍 |
Shipped with 2.0.0 |
Hi, I got a problem, when used
indentedSyntax
option, it occurred error:Before using
sass-loader
, for example, we havefoundation/_reset.scss
file, in normal usage (Ex: ruby-sass, node-sass):use sass-loader, we have to be:
But it's not necessarily to set extension for these files.
in
index.js
@ line 140:in
index.js
@ line 92:Without above, it works fine!
Any insight would be appreciated!
The text was updated successfully, but these errors were encountered: