-
Notifications
You must be signed in to change notification settings - Fork 357
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
quiet-deps isn't quieting dependencies #1360
Comments
Same issue here: the |
+1, just noticed the same thing after updating |
Thanks @nex3 ! |
Happening to me on 1.80.3 |
Can you file a separate issue with a reproduction? |
also getting it on loader: 'sass-loader',
options: {
sassOptions: {
outputStyle: 'expanded',
quietDeps: true
},
sourceMap: !devMode
} |
@Aetherinox Same request as before, please file a separate issue with a stand-alone reproduction. |
Got the same issue in 1.80.0 and later versions with
It think this exemple will reproduce the issue body {
background-color: darken(white, 0);
} I downgraded to sass 1.79.6 as a workaround and don't have the warnings anymore |
@raph5 In order to understand why |
Im using @ import. But actually I think this not related to the
This may be related to #2418 |
@raph5 Try this: $ echo "p { color: darken(white, 0) }" | sass --stdin --silence-deprecation color-functions,global-builtin
p {
color: white;
} (It would help if sass made it clearer exactly which deprecation it was warning about - it does say |
@jdelStrother That's a good point, I've put out #2475 to fix that. |
Nice, thank you! |
In this sample project, if I run
yarn sass --load-path=./node_modules --quiet-deps ./style.scss
, I get deprecation warnings from Bootstrap - eg:From a debugger I can see that in here -
_this._quietDeps is true and _this._inDependency is false, but I'm struggling to figure out why
bootstrap/scss/_variables.scss
might not be considered a dependency.The text was updated successfully, but these errors were encountered: