PR body updated to plaintext for easier squash-merging. Original body content below:
Bumpsesbuild from 0.25.12 to 0.27.2. Release notesSourced fromesbuild's releases. v0.27.2Allow import path specifiers starting with#/ (#4361) Previously the specification forpackage.json disallowed import path specifiers starting with#/, but this restrictionhas recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping#/* to./src/* (previously you had to use another character such as#_* instead, which was more confusing). There is some more context innodejs/node#49182. This change was contributed by@hybrist. Automatically add the-webkit-mask prefix (#4357,#4358) This release automatically adds the-webkit- vendor prefix for themask CSS shorthand property: /* Original code */main {mask:url(x.png) center/5rem no-repeat}/* Old output (with --target=chrome110) */main {mask:url(x.png) center/5rem no-repeat;}/* New output (with --target=chrome110) */main {-webkit-mask:url(x.png) center/5rem no-repeat;mask:url(x.png) center/5rem no-repeat;}This change was contributed by@BPJEnnova. Additional minification ofswitch statements (#4176,#4359) This release contains additional minification patterns for reducingswitch statements. Here is an example: // Original codeswitch(x){case0:foo()breakcase1:default:bar()}// Old output (with --minify)switch(x){case0:foo();break;case1:default:bar()}// New output (with --minify)
... (truncated) ChangelogSourced fromesbuild's changelog. 0.27.2Allow import path specifiers starting with#/ (#4361) Previously the specification forpackage.json disallowed import path specifiers starting with#/, but this restrictionhas recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping#/* to./src/* (previously you had to use another character such as#_* instead, which was more confusing). There is some more context innodejs/node#49182. This change was contributed by@hybrist. Automatically add the-webkit-mask prefix (#4357,#4358) This release automatically adds the-webkit- vendor prefix for themask CSS shorthand property: /* Original code */main {mask:url(x.png) center/5rem no-repeat}/* Old output (with --target=chrome110) */main {mask:url(x.png) center/5rem no-repeat;}/* New output (with --target=chrome110) */main {-webkit-mask:url(x.png) center/5rem no-repeat;mask:url(x.png) center/5rem no-repeat;}This change was contributed by@BPJEnnova. Additional minification ofswitch statements (#4176,#4359) This release contains additional minification patterns for reducingswitch statements. Here is an example: // Original codeswitch(x){case0:foo()breakcase1:default:bar()}// Old output (with --minify)switch(x){case0:foo();break;case1:default:bar()}
... (truncated) CommitsMaintainer changesThis version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for esbuild since your current version.

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting@dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR@dependabot recreate will recreate this PR, overwriting any edits that have been made to it@dependabot merge will merge this PR after your CI passes on it@dependabot squash and merge will squash and merge this PR after your CI passes on it@dependabot cancel merge will cancel a previously requested merge and block automerging@dependabot reopen will reopen this PR if it is closed@dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency@dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
|
Uh oh!
There was an error while loading.Please reload this page.
Bumpsesbuild from 0.25.12 to 0.27.2.