We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The latest version of SASS has deprecated @include...
More info and automated migrator: https://sass-lang.com/d/import ╷ 1 │ @import 'normalize/variables'; │ ^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules/normalize-scss/sass/_normalize.scss 1:9 @use source/assets/stylesheets/vendor/_libraries.scss 1:1 @use stdin 3:1 root stylesheet DEPRECATION WARNING: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import 'normalize/vertical-rhythm'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules/normalize-scss/sass/_normalize.scss 2:9 @use source/assets/stylesheets/vendor/_libraries.scss 1:1 @use stdin 3:1 root stylesheet DEPRECATION WARNING: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 3 │ @import 'normalize/normalize-mixin'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules/normalize-scss/sass/_normalize.scss 3:9 @use source/assets/stylesheets/vendor/_libraries.scss 1:1 @use stdin 3:1
If we change the include to this, it fixes the issue..
@use 'normalize/variables'; @use 'normalize/vertical-rhythm'; @use 'normalize/normalize-mixin';
The text was updated successfully, but these errors were encountered:
@JohnAlbin here is the PR to patch this necolas#916
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The latest version of SASS has deprecated @include...
If we change the include to this, it fixes the issue..
The text was updated successfully, but these errors were encountered: