-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sass-loader@>=6.0.0 #45
Conversation
…pport for webpack2
Yarn won't let me pull af4b4fc because it comes after the latest version bump This PR definitely has my vote, btw. |
@Judahmeek I prefer not to mess with pre-release because of how easy it is to break I have reports from others that this is a good fix, so I will probably release on that basis. (There are always unexpected issues that need to be patched following.) Anyone can please let me know if they object to that plan. |
There is still an incompatibility with According to this comment by @jhnns it is a known issue. However it would be nice if I could get independent confirmation that it is not just my setup. In the absence of further information I intend to adjust the |
Published as |
@bholloway Just updated to Before it worked just fine with Any idea how to fix it? This is my webpack config: config.module.rules.push(
{
test: /(\.scss|\.css)$/,
exclude: [/node_modules/, /normalize.css/, /icomoon/],
loader: `style-loader!css-loader?{"sourceMap":true,"modules":true, "importLoaders":2, "localIdentName": "[path]---[name]---[local]---[hash:base64:5]"}!postcss-loader!resolve-url-loader!sass-loader?{"sourceMap":true,"includePaths":["${themePath}"]}`
} And this is the error (I get multiple of these errors, basically for each import):
And these are my package versions:
|
Strange that resolve-url-loader is in your config but not in your error
message.
The error message should show all the loaders.
Maybe it is truncated on this device I'm reading on.
|
@bholloway Hi thanks, no worries. It seems I've got a problem with my |
A large change, intended as non-breaking.
Supersedes #31, #41, #44.
Hopefully fixes #36, #42.
Will probably be a major version bump to play it safe: discuss.