-
Notifications
You must be signed in to change notification settings - Fork 325
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
SASS is deprecating @import
#2084
Comments
They have an automated migration tool. I just tried it like this: $ sass-migrator module --migrate-deps src/pydata_sphinx_theme/assets/styles/pydata-sphinx-theme.scss node_modules/bootstrap/scss/_functions.scss adding bootstrap's $target-color-contrast-dark: $foundation-black, change to $target-color-contrast-dark: variables-color.$foundation-black, Might be a good starting point but I'm not savvy enough to know off the top of my head if this will work before BS6 or if we have to wait for BS6 before we can change our code. |
I ran the migration tool, and I don't think it does what you want as a package author. It is useful for end user projects, because it changes imports to using namespaces—fewer chances of conflicts. But, as a style library you only use |
Looks like |
See https://sass-lang.com/documentation/breaking-changes/import/ and executablebooks/sphinx-design#231
Bootstrap issue (they're aiming for v6)
I think what we want in our
index.scss
is to do:For all modules we expose to users, but, interally, to use:
for modules we don't export, and then access those using the
bootstrap.
namespace.The text was updated successfully, but these errors were encountered: