chore(deps): update dependency esbuild to ~0.14.47 #1097
Merged
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.
This PR contains the following updates:
~0.14.46
->~0.14.47
Release Notes
evanw/esbuild
v0.14.47
Compare Source
Make global names more compact when
||=
is available (#2331)With this release, the code esbuild generates for the
--global-name=
setting is now slightly shorter when you don't configure esbuild such that the||=
operator is unsupported (e.g. with--target=chrome80
or--supported:logical-assignment=false
):Fix
--mangle-quoted=false
with--minify-syntax=true
If property mangling is active and
--mangle-quoted
is disabled, quoted properties are supposed to be preserved. However, there was a case when this didn't happen if--minify-syntax
was enabled, since that internally transformsx['y']
intox.y
to reduce code size. This issue has been fixed:Notice how the property
foo
is always used unquoted but the propertybar
is always used quoted, sofoo
should be consistently mangled whilebar
should be consistently not mangled.Fix a minification bug regarding
this
and property initializersWhen minification is enabled, esbuild attempts to inline the initializers of variables that have only been used once into the start of the following expression to reduce code size. However, there was a bug where this transformation could change the value of
this
when the initializer is a property access and the start of the following expression is a call expression. This release fixes the bug:Configuration
📅 Schedule: Branch creation - "before 2am" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.