Skip to content
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

The latest version of SASS has deprecated @include #160

Open
chrishough opened this issue Oct 27, 2024 · 1 comment · May be fixed by necolas/normalize.css#916
Open

The latest version of SASS has deprecated @include #160

chrishough opened this issue Oct 27, 2024 · 1 comment · May be fixed by necolas/normalize.css#916

Comments

@chrishough
Copy link

chrishough commented Oct 27, 2024

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';
@chrishough
Copy link
Author

@JohnAlbin here is the PR to patch this necolas#916

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant