You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The migrator changes @import with @use. I'm using the function variable-exists which only checks for variables in the current scope. With @use everything inside this file will be moved to its own namespace, so the check fails.
Example before migration (variable theme is declared nested inside './styles/themes/new/palette/scss'):
The migrator changes
@import
with@use
. I'm using the functionvariable-exists
which only checks for variables in the current scope. With@use
everything inside this file will be moved to its own namespace, so the check fails.Example before migration (variable theme is declared nested inside './styles/themes/new/palette/scss'):
After migration:
Expected:
The text was updated successfully, but these errors were encountered: