-
-
Notifications
You must be signed in to change notification settings - Fork 429
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
move node-sass to peerDependencies? #28
Comments
@tomchentw, some projects may use other packages like gulp-sass, grunt-sass along with sass-loader, which may depend on different node-sass version. Making node-sass as a peerDependency may cause problem to those projects. If there is any problem with latest sass-loader (in your case, particular node-sass version dependency ), you can always use previously working sass-loader version until the issues in new version are fixed. |
It's a tricky question. There are pro and cons for both sides. The less-loader decided to move it to |
I think we should move it to the Now that |
yes |
done() |
Hi, as
node-sass
currently have some issue with pre-build binaries, I'm wondering that if you have plan to movenode-sass
topeerDependencies
instead ofdependencies
?This will allow client to override custom
node-sass
version without fork thesass-loader
project. Just specify"node-sass": "1.0.3"
in theirpackage.json
and it will load the desired version ofnode-sass
.The text was updated successfully, but these errors were encountered: