-
Notifications
You must be signed in to change notification settings - Fork 393
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
chore: Upgrade dependencies #1713
Conversation
@@ -21,21 +21,22 @@ function isRelativeImport(id: string) { | |||
return id.startsWith('.'); | |||
} | |||
|
|||
function isImplicitCssImport(id: string, importee: string) { | |||
function isImplicitCssImport(source: string, importer: string | undefined) { |
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.
Align with rollup parameter naming.
path.extname(importee) === '.html' && | ||
path.basename(id, '.css') === path.basename(importee, '.html') | ||
path.extname(source) === '.css' && | ||
importer && |
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.
Fixing an actual compiler issue exhibited by the new rollup types.
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.
Im a big scared of upgrading terser but...
@diervo Yes, but the longer we wait the harder it will be to integrate the upstream changes. |
cf3494c
to
bd14669
Compare
Details
Upgrade all the non-Babel dependencies in the repository.
Does this PR introduce breaking changes?
No, it does not introduce breaking changes.
If yes, please describe the impact and migration path for existing applications.
The PR fulfills these requirements:
GUS Work Item
W-7109631