This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
fix(typography): Separate @material/feature-targeting #5634
fix(typography): Separate @material/feature-targeting #5634
Changes from all commits
772a03e
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
What about
as ft
to its clearly different thanfeature-targeting
?I'm trying to find ways we can take advantage of the
_index.scss
files.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.
If we're just looking for another name, I'd recommend
feature
as a name that is concise and makes sense.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.
I tried both ft and without the
as feature-targeting
results are as follow:Error: Can't find stylesheet to import.
26 │ @use "@material/feature-targeting" as ft;
Also do want to add this is blocking other PRs from being merged but I would encourage to file a bug/issue to investigate ways to take advantage of the _index.scss files.
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.
Thanks @EstebanG23 for sending a fix! Wondering why Copybara didn't block CL submit when github action failed in first place. 🤔
Sass couldn't compile Sass test files with
@import
statements since the custom importer doesn't handle new _index files (Seetesting/featuretargeting/sass-test-compile.helper.ts
).Next steps:
sass-test-compile.helper.ts
to handle@import
syntax. (Created Use sass-loader to compile Sass test files #5641)@use
syntax.