rothsandro / eleventy-notes

A template for Eleventy to publish your personal notes or docs.
https://eleventy-notes.sandroroth.com/
140 stars 17 forks source link

Resolve Sass deprecation warnings #60

Open uncenter opened 2 days ago

uncenter commented 2 days ago

These won't happen with the current version of Sass eleventy-notes is on, but if you bump a few minor versions @import is deprecated as of v1.80.0: https://sass-lang.com/blog/import-is-deprecated/. You'll get these warnings until you resolve it.

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 "./3-global/kbd";
  │         ^^^^^^^^^^^^^^^^
  ╵
    css/app.scss 3:9          @import
    css/app.tomato.scss 91:9  root stylesheet
rothsandro commented 1 day ago

Thanks for reporting. I will update and migrate the code.