-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
fix(material-experimental): errors with latest MDC canary version #18173
Conversation
Hmm, this was passing locally. Looks like I'll have to spend a bit more time on it. Will ping when Circle is passing as well. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM (once CI is green).
3f658a8
to
e9b7afd
Compare
A few hours ago MDC switched all their Sass to use the new Sass modules (see material-components/material-components-web@faa9af3). This breaks our MDC components since they've been set up to use global Sass variables. These changes switch all the imports to the `.import` files which use the old approach for exposing variables.
e9b7afd
to
08c86bd
Compare
It should be good to go now. @devversion I don't know whether you want to take one more look at it. I had to switch the Gulp-based tasks to use the Dart version of Sass, because |
Right, I should have given you all a heads up about this (MDC switching to the new Sass module system); we'd been talking about it for a while. The Sass team is working on a project to make dart-sass faster to minimize the perf gap. It looks like |
FWIW this shouldn't affect our day-to-day workflow too much since it only applies to the Gulp-based CI tasks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I think it shouldn't affect us too much. Still LGTM.
…8173) A few hours ago MDC switched all their Sass to use the new Sass modules (see material-components/material-components-web@faa9af3). This breaks our MDC components since they've been set up to use global Sass variables. These changes switch all the imports to the `.import` files which use the old approach for exposing variables. (cherry picked from commit 1b16701)
…gular#18173) A few hours ago MDC switched all their Sass to use the new Sass modules (see material-components/material-components-web@faa9af3). This breaks our MDC components since they've been set up to use global Sass variables. These changes switch all the imports to the `.import` files which use the old approach for exposing variables.
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
A few hours ago MDC switched all their Sass to use the new Sass modules (see material-components/material-components-web@faa9af3). This breaks our MDC components since they've been set up to use global Sass variables. These changes switch all the imports to the
.import
files which use the old approach for exposing variables.