Skip to content

Commit 3eaf3cc

Browse files
Bump esbuild from 0.19.9 to 0.25.0 (#1564)
Bumps [esbuild](https://github.com/evanw/esbuild) from 0.19.9 to 0.25.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/releases">esbuild's releases</a>.</em></p> <blockquote> <h2>v0.25.0</h2> <p><strong>This release deliberately contains backwards-incompatible changes.</strong> To avoid automatically picking up releases like this, you should either be pinning the exact version of <code>esbuild</code> in your <code>package.json</code> file (recommended) or be using a version range syntax that only accepts patch upgrades such as <code>^0.24.0</code> or <code>~0.24.0</code>. See npm's documentation about <a href="https://docs.npmjs.com/cli/v6/using-npm/semver/">semver</a> for more information.</p> <ul> <li> <p>Restrict access to esbuild's development server (<a href="https://github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99">GHSA-67mh-4wv8-2f99</a>)</p> <p>This change addresses esbuild's first security vulnerability report. Previously esbuild set the <code>Access-Control-Allow-Origin</code> header to <code>*</code> to allow esbuild's development server to be flexible in how it's used for development. However, this allows the websites you visit to make HTTP requests to esbuild's local development server, which gives read-only access to your source code if the website were to fetch your source code's specific URL. You can read more information in <a href="https://github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99">the report</a>.</p> <p>Starting with this release, <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">CORS</a> will now be disabled, and requests will now be denied if the host does not match the one provided to <code>--serve=</code>. The default host is <code>0.0.0.0</code>, which refers to all of the IP addresses that represent the local machine (e.g. both <code>127.0.0.1</code> and <code>192.168.0.1</code>). If you want to customize anything about esbuild's development server, you can <a href="https://esbuild.github.io/api/#serve-proxy">put a proxy in front of esbuild</a> and modify the incoming and/or outgoing requests.</p> <p>In addition, the <code>serve()</code> API call has been changed to return an array of <code>hosts</code> instead of a single <code>host</code> string. This makes it possible to determine all of the hosts that esbuild's development server will accept.</p> <p>Thanks to <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a> for reporting this issue.</p> </li> <li> <p>Delete output files when a build fails in watch mode (<a href="https://redirect.github.com/evanw/esbuild/issues/3643">#3643</a>)</p> <p>It has been requested for esbuild to delete files when a build fails in watch mode. Previously esbuild left the old files in place, which could cause people to not immediately realize that the most recent build failed. With this release, esbuild will now delete all output files if a rebuild fails. Fixing the build error and triggering another rebuild will restore all output files again.</p> </li> <li> <p>Fix correctness issues with the CSS nesting transform (<a href="https://redirect.github.com/evanw/esbuild/issues/3620">#3620</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/3877">#3877</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/3933">#3933</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/3997">#3997</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4005">#4005</a>, <a href="https://redirect.github.com/evanw/esbuild/pull/4037">#4037</a>, <a href="https://redirect.github.com/evanw/esbuild/pull/4038">#4038</a>)</p> <p>This release fixes the following problems:</p> <ul> <li> <p>Naive expansion of CSS nesting can result in an exponential blow-up of generated CSS if each nesting level has multiple selectors. Previously esbuild sometimes collapsed individual nesting levels using <code>:is()</code> to limit expansion. However, this collapsing wasn't correct in some cases, so it has been removed to fix correctness issues.</p> <pre lang="css"><code>/* Original code */ .parent { &gt; .a, &gt; .b1 &gt; .b2 { color: red; } } <p>/* Old output (with --supported:nesting=false) */<br /> .parent &gt; :is(.a, .b1 &gt; .b2) {<br /> color: red;<br /> }</p> <p>/* New output (with --supported:nesting=false) */<br /> .parent &gt; .a,<br /> .parent &gt; .b1 &gt; .b2 {<br /> color: red;<br /> }<br /> </code></pre></p> <p>Thanks to <a href="https://github.com/tim-we"><code>@​tim-we</code></a> for working on a fix.</p> </li> <li> <p>The <code>&amp;</code> CSS nesting selector can be repeated multiple times to increase CSS specificity. Previously esbuild ignored this possibility and incorrectly considered <code>&amp;&amp;</code> to have the same specificity as <code>&amp;</code>. With this release, this should now work correctly:</p> <pre lang="css"><code>/* Original code (color should be red) */ </code></pre> </li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/blob/main/CHANGELOG-2023.md">esbuild's changelog</a>.</em></p> <blockquote> <h1>Changelog: 2023</h1> <p>This changelog documents all esbuild versions published in the year 2023 (versions 0.16.13 through 0.19.11).</p> <h2>0.19.11</h2> <ul> <li> <p>Fix TypeScript-specific class transform edge case (<a href="https://redirect.github.com/evanw/esbuild/issues/3559">#3559</a>)</p> <p>The previous release introduced an optimization that avoided transforming <code>super()</code> in the class constructor for TypeScript code compiled with <code>useDefineForClassFields</code> set to <code>false</code> if all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case <em>and</em> there are <code>#private</code> instance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call to <code>super()</code> (since <code>super()</code> is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:</p> <pre lang="ts"><code>// Original code class Foo extends Bar { #private = 1; public: any; constructor() { super(); } } <p>// Old output (with esbuild v0.19.9)<br /> class Foo extends Bar {<br /> constructor() {<br /> super();<br /> this.#private = 1;<br /> }<br /> #private;<br /> }</p> <p>// Old output (with esbuild v0.19.10)<br /> class Foo extends Bar {<br /> constructor() {<br /> this.#private = 1;<br /> super();<br /> }<br /> #private;<br /> }</p> <p>// New output<br /> class Foo extends Bar {<br /> #private = 1;<br /> constructor() {<br /> super();<br /> }<br /> }<br /> </code></pre></p> </li> <li> <p>Minifier: allow reording a primitive past a side-effect (<a href="https://redirect.github.com/evanw/esbuild/issues/3568">#3568</a>)</p> <p>The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanw/esbuild/commit/e9174d671b1882758cd32ac5e146200f5bee3e45"><code>e9174d6</code></a> publish 0.25.0 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/c27dbebb9e7a55dd9a084dd151dddd840787490e"><code>c27dbeb</code></a> fix <code>hosts</code> in <code>plugin-tests.js</code></li> <li><a href="https://github.com/evanw/esbuild/commit/6794f602a453cf0255bcae245871de120a89a559"><code>6794f60</code></a> fix <code>hosts</code> in <code>node-unref-tests.js</code></li> <li><a href="https://github.com/evanw/esbuild/commit/de85afd65edec9ebc44a11e245fd9e9a2e99760d"><code>de85afd</code></a> Merge commit from fork</li> <li><a href="https://github.com/evanw/esbuild/commit/da1de1bf77a65f06654b49878d9ec4747ddaa21f"><code>da1de1b</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4065">#4065</a>: bitwise operators can return bigints</li> <li><a href="https://github.com/evanw/esbuild/commit/f4e9d19fb20095a98bf40634f0380f6a16be91e7"><code>f4e9d19</code></a> switch case liveness: <code>default</code> is always last</li> <li><a href="https://github.com/evanw/esbuild/commit/7aa47c3e778ea04849f97f18dd9959df88fa0886"><code>7aa47c3</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4028">#4028</a>: minify live/dead <code>switch</code> cases better</li> <li><a href="https://github.com/evanw/esbuild/commit/22ecd306190b8971ec4474b5485266c20350e266"><code>22ecd30</code></a> minify: more constant folding for strict equality</li> <li><a href="https://github.com/evanw/esbuild/commit/4cdf03c03697128044fa8fb76e5c478e9765b353"><code>4cdf03c</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4053">#4053</a>: reordering of <code>.tsx</code> in <code>node_modules</code></li> <li><a href="https://github.com/evanw/esbuild/commit/dc719775b7140120916bd9e6777ca1cb8a1cdc0e"><code>dc71977</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/3692">#3692</a>: <code>0</code> now picks a random ephemeral port</li> <li>Additional commits viewable in <a href="https://github.com/evanw/esbuild/compare/v0.19.9...v0.25.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=esbuild&package-manager=npm_and_yarn&previous-version=0.19.9&new-version=0.25.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/databricks/databricks-vscode/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ilia Babanov <ilia.babanov@databricks.com>
1 parent 4ebe404 commit 3eaf3cc

File tree

2 files changed

+125
-95
lines changed

2 files changed

+125
-95
lines changed

packages/databricks-vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1207,7 +1207,7 @@
12071207
"@wdio/spec-reporter": "^8.32.4",
12081208
"@wdio/types": "^8.32.4",
12091209
"chai": "^4.3.10",
1210-
"esbuild": "^0.19.9",
1210+
"esbuild": "^0.25.0",
12111211
"eslint": "^8.55.0",
12121212
"eslint-plugin-local-rules": "^2.0.1",
12131213
"fs-extra": "^11.2.0",

yarn.lock

Lines changed: 124 additions & 94 deletions
Original file line numberDiff line numberDiff line change
@@ -342,156 +342,177 @@ __metadata:
342342
languageName: unknown
343343
linkType: soft
344344

345-
"@esbuild/android-arm64@npm:0.19.9":
346-
version: 0.19.9
347-
resolution: "@esbuild/android-arm64@npm:0.19.9"
345+
"@esbuild/aix-ppc64@npm:0.25.0":
346+
version: 0.25.0
347+
resolution: "@esbuild/aix-ppc64@npm:0.25.0"
348+
conditions: os=aix & cpu=ppc64
349+
languageName: node
350+
linkType: hard
351+
352+
"@esbuild/android-arm64@npm:0.25.0":
353+
version: 0.25.0
354+
resolution: "@esbuild/android-arm64@npm:0.25.0"
348355
conditions: os=android & cpu=arm64
349356
languageName: node
350357
linkType: hard
351358

352-
"@esbuild/android-arm@npm:0.19.9":
353-
version: 0.19.9
354-
resolution: "@esbuild/android-arm@npm:0.19.9"
359+
"@esbuild/android-arm@npm:0.25.0":
360+
version: 0.25.0
361+
resolution: "@esbuild/android-arm@npm:0.25.0"
355362
conditions: os=android & cpu=arm
356363
languageName: node
357364
linkType: hard
358365

359-
"@esbuild/android-x64@npm:0.19.9":
360-
version: 0.19.9
361-
resolution: "@esbuild/android-x64@npm:0.19.9"
366+
"@esbuild/android-x64@npm:0.25.0":
367+
version: 0.25.0
368+
resolution: "@esbuild/android-x64@npm:0.25.0"
362369
conditions: os=android & cpu=x64
363370
languageName: node
364371
linkType: hard
365372

366-
"@esbuild/darwin-arm64@npm:0.19.9":
367-
version: 0.19.9
368-
resolution: "@esbuild/darwin-arm64@npm:0.19.9"
373+
"@esbuild/darwin-arm64@npm:0.25.0":
374+
version: 0.25.0
375+
resolution: "@esbuild/darwin-arm64@npm:0.25.0"
369376
conditions: os=darwin & cpu=arm64
370377
languageName: node
371378
linkType: hard
372379

373-
"@esbuild/darwin-x64@npm:0.19.9":
374-
version: 0.19.9
375-
resolution: "@esbuild/darwin-x64@npm:0.19.9"
380+
"@esbuild/darwin-x64@npm:0.25.0":
381+
version: 0.25.0
382+
resolution: "@esbuild/darwin-x64@npm:0.25.0"
376383
conditions: os=darwin & cpu=x64
377384
languageName: node
378385
linkType: hard
379386

380-
"@esbuild/freebsd-arm64@npm:0.19.9":
381-
version: 0.19.9
382-
resolution: "@esbuild/freebsd-arm64@npm:0.19.9"
387+
"@esbuild/freebsd-arm64@npm:0.25.0":
388+
version: 0.25.0
389+
resolution: "@esbuild/freebsd-arm64@npm:0.25.0"
383390
conditions: os=freebsd & cpu=arm64
384391
languageName: node
385392
linkType: hard
386393

387-
"@esbuild/freebsd-x64@npm:0.19.9":
388-
version: 0.19.9
389-
resolution: "@esbuild/freebsd-x64@npm:0.19.9"
394+
"@esbuild/freebsd-x64@npm:0.25.0":
395+
version: 0.25.0
396+
resolution: "@esbuild/freebsd-x64@npm:0.25.0"
390397
conditions: os=freebsd & cpu=x64
391398
languageName: node
392399
linkType: hard
393400

394-
"@esbuild/linux-arm64@npm:0.19.9":
395-
version: 0.19.9
396-
resolution: "@esbuild/linux-arm64@npm:0.19.9"
401+
"@esbuild/linux-arm64@npm:0.25.0":
402+
version: 0.25.0
403+
resolution: "@esbuild/linux-arm64@npm:0.25.0"
397404
conditions: os=linux & cpu=arm64
398405
languageName: node
399406
linkType: hard
400407

401-
"@esbuild/linux-arm@npm:0.19.9":
402-
version: 0.19.9
403-
resolution: "@esbuild/linux-arm@npm:0.19.9"
408+
"@esbuild/linux-arm@npm:0.25.0":
409+
version: 0.25.0
410+
resolution: "@esbuild/linux-arm@npm:0.25.0"
404411
conditions: os=linux & cpu=arm
405412
languageName: node
406413
linkType: hard
407414

408-
"@esbuild/linux-ia32@npm:0.19.9":
409-
version: 0.19.9
410-
resolution: "@esbuild/linux-ia32@npm:0.19.9"
415+
"@esbuild/linux-ia32@npm:0.25.0":
416+
version: 0.25.0
417+
resolution: "@esbuild/linux-ia32@npm:0.25.0"
411418
conditions: os=linux & cpu=ia32
412419
languageName: node
413420
linkType: hard
414421

415-
"@esbuild/linux-loong64@npm:0.19.9":
416-
version: 0.19.9
417-
resolution: "@esbuild/linux-loong64@npm:0.19.9"
422+
"@esbuild/linux-loong64@npm:0.25.0":
423+
version: 0.25.0
424+
resolution: "@esbuild/linux-loong64@npm:0.25.0"
418425
conditions: os=linux & cpu=loong64
419426
languageName: node
420427
linkType: hard
421428

422-
"@esbuild/linux-mips64el@npm:0.19.9":
423-
version: 0.19.9
424-
resolution: "@esbuild/linux-mips64el@npm:0.19.9"
429+
"@esbuild/linux-mips64el@npm:0.25.0":
430+
version: 0.25.0
431+
resolution: "@esbuild/linux-mips64el@npm:0.25.0"
425432
conditions: os=linux & cpu=mips64el
426433
languageName: node
427434
linkType: hard
428435

429-
"@esbuild/linux-ppc64@npm:0.19.9":
430-
version: 0.19.9
431-
resolution: "@esbuild/linux-ppc64@npm:0.19.9"
436+
"@esbuild/linux-ppc64@npm:0.25.0":
437+
version: 0.25.0
438+
resolution: "@esbuild/linux-ppc64@npm:0.25.0"
432439
conditions: os=linux & cpu=ppc64
433440
languageName: node
434441
linkType: hard
435442

436-
"@esbuild/linux-riscv64@npm:0.19.9":
437-
version: 0.19.9
438-
resolution: "@esbuild/linux-riscv64@npm:0.19.9"
443+
"@esbuild/linux-riscv64@npm:0.25.0":
444+
version: 0.25.0
445+
resolution: "@esbuild/linux-riscv64@npm:0.25.0"
439446
conditions: os=linux & cpu=riscv64
440447
languageName: node
441448
linkType: hard
442449

443-
"@esbuild/linux-s390x@npm:0.19.9":
444-
version: 0.19.9
445-
resolution: "@esbuild/linux-s390x@npm:0.19.9"
450+
"@esbuild/linux-s390x@npm:0.25.0":
451+
version: 0.25.0
452+
resolution: "@esbuild/linux-s390x@npm:0.25.0"
446453
conditions: os=linux & cpu=s390x
447454
languageName: node
448455
linkType: hard
449456

450-
"@esbuild/linux-x64@npm:0.19.9":
451-
version: 0.19.9
452-
resolution: "@esbuild/linux-x64@npm:0.19.9"
457+
"@esbuild/linux-x64@npm:0.25.0":
458+
version: 0.25.0
459+
resolution: "@esbuild/linux-x64@npm:0.25.0"
453460
conditions: os=linux & cpu=x64
454461
languageName: node
455462
linkType: hard
456463

457-
"@esbuild/netbsd-x64@npm:0.19.9":
458-
version: 0.19.9
459-
resolution: "@esbuild/netbsd-x64@npm:0.19.9"
464+
"@esbuild/netbsd-arm64@npm:0.25.0":
465+
version: 0.25.0
466+
resolution: "@esbuild/netbsd-arm64@npm:0.25.0"
467+
conditions: os=netbsd & cpu=arm64
468+
languageName: node
469+
linkType: hard
470+
471+
"@esbuild/netbsd-x64@npm:0.25.0":
472+
version: 0.25.0
473+
resolution: "@esbuild/netbsd-x64@npm:0.25.0"
460474
conditions: os=netbsd & cpu=x64
461475
languageName: node
462476
linkType: hard
463477

464-
"@esbuild/openbsd-x64@npm:0.19.9":
465-
version: 0.19.9
466-
resolution: "@esbuild/openbsd-x64@npm:0.19.9"
478+
"@esbuild/openbsd-arm64@npm:0.25.0":
479+
version: 0.25.0
480+
resolution: "@esbuild/openbsd-arm64@npm:0.25.0"
481+
conditions: os=openbsd & cpu=arm64
482+
languageName: node
483+
linkType: hard
484+
485+
"@esbuild/openbsd-x64@npm:0.25.0":
486+
version: 0.25.0
487+
resolution: "@esbuild/openbsd-x64@npm:0.25.0"
467488
conditions: os=openbsd & cpu=x64
468489
languageName: node
469490
linkType: hard
470491

471-
"@esbuild/sunos-x64@npm:0.19.9":
472-
version: 0.19.9
473-
resolution: "@esbuild/sunos-x64@npm:0.19.9"
492+
"@esbuild/sunos-x64@npm:0.25.0":
493+
version: 0.25.0
494+
resolution: "@esbuild/sunos-x64@npm:0.25.0"
474495
conditions: os=sunos & cpu=x64
475496
languageName: node
476497
linkType: hard
477498

478-
"@esbuild/win32-arm64@npm:0.19.9":
479-
version: 0.19.9
480-
resolution: "@esbuild/win32-arm64@npm:0.19.9"
499+
"@esbuild/win32-arm64@npm:0.25.0":
500+
version: 0.25.0
501+
resolution: "@esbuild/win32-arm64@npm:0.25.0"
481502
conditions: os=win32 & cpu=arm64
482503
languageName: node
483504
linkType: hard
484505

485-
"@esbuild/win32-ia32@npm:0.19.9":
486-
version: 0.19.9
487-
resolution: "@esbuild/win32-ia32@npm:0.19.9"
506+
"@esbuild/win32-ia32@npm:0.25.0":
507+
version: 0.25.0
508+
resolution: "@esbuild/win32-ia32@npm:0.25.0"
488509
conditions: os=win32 & cpu=ia32
489510
languageName: node
490511
linkType: hard
491512

492-
"@esbuild/win32-x64@npm:0.19.9":
493-
version: 0.19.9
494-
resolution: "@esbuild/win32-x64@npm:0.19.9"
513+
"@esbuild/win32-x64@npm:0.25.0":
514+
version: 0.25.0
515+
resolution: "@esbuild/win32-x64@npm:0.25.0"
495516
conditions: os=win32 & cpu=x64
496517
languageName: node
497518
linkType: hard
@@ -3735,7 +3756,7 @@ __metadata:
37353756
ansi-to-html: ^0.7.2
37363757
bcryptjs: ^2.4.3
37373758
chai: ^4.3.10
3738-
esbuild: ^0.19.9
3759+
esbuild: ^0.25.0
37393760
eslint: ^8.55.0
37403761
eslint-plugin-local-rules: ^2.0.1
37413762
fs-extra: ^11.2.0
@@ -4349,33 +4370,38 @@ __metadata:
43494370
languageName: node
43504371
linkType: hard
43514372

4352-
"esbuild@npm:^0.19.9":
4353-
version: 0.19.9
4354-
resolution: "esbuild@npm:0.19.9"
4355-
dependencies:
4356-
"@esbuild/android-arm": 0.19.9
4357-
"@esbuild/android-arm64": 0.19.9
4358-
"@esbuild/android-x64": 0.19.9
4359-
"@esbuild/darwin-arm64": 0.19.9
4360-
"@esbuild/darwin-x64": 0.19.9
4361-
"@esbuild/freebsd-arm64": 0.19.9
4362-
"@esbuild/freebsd-x64": 0.19.9
4363-
"@esbuild/linux-arm": 0.19.9
4364-
"@esbuild/linux-arm64": 0.19.9
4365-
"@esbuild/linux-ia32": 0.19.9
4366-
"@esbuild/linux-loong64": 0.19.9
4367-
"@esbuild/linux-mips64el": 0.19.9
4368-
"@esbuild/linux-ppc64": 0.19.9
4369-
"@esbuild/linux-riscv64": 0.19.9
4370-
"@esbuild/linux-s390x": 0.19.9
4371-
"@esbuild/linux-x64": 0.19.9
4372-
"@esbuild/netbsd-x64": 0.19.9
4373-
"@esbuild/openbsd-x64": 0.19.9
4374-
"@esbuild/sunos-x64": 0.19.9
4375-
"@esbuild/win32-arm64": 0.19.9
4376-
"@esbuild/win32-ia32": 0.19.9
4377-
"@esbuild/win32-x64": 0.19.9
4373+
"esbuild@npm:^0.25.0":
4374+
version: 0.25.0
4375+
resolution: "esbuild@npm:0.25.0"
4376+
dependencies:
4377+
"@esbuild/aix-ppc64": 0.25.0
4378+
"@esbuild/android-arm": 0.25.0
4379+
"@esbuild/android-arm64": 0.25.0
4380+
"@esbuild/android-x64": 0.25.0
4381+
"@esbuild/darwin-arm64": 0.25.0
4382+
"@esbuild/darwin-x64": 0.25.0
4383+
"@esbuild/freebsd-arm64": 0.25.0
4384+
"@esbuild/freebsd-x64": 0.25.0
4385+
"@esbuild/linux-arm": 0.25.0
4386+
"@esbuild/linux-arm64": 0.25.0
4387+
"@esbuild/linux-ia32": 0.25.0
4388+
"@esbuild/linux-loong64": 0.25.0
4389+
"@esbuild/linux-mips64el": 0.25.0
4390+
"@esbuild/linux-ppc64": 0.25.0
4391+
"@esbuild/linux-riscv64": 0.25.0
4392+
"@esbuild/linux-s390x": 0.25.0
4393+
"@esbuild/linux-x64": 0.25.0
4394+
"@esbuild/netbsd-arm64": 0.25.0
4395+
"@esbuild/netbsd-x64": 0.25.0
4396+
"@esbuild/openbsd-arm64": 0.25.0
4397+
"@esbuild/openbsd-x64": 0.25.0
4398+
"@esbuild/sunos-x64": 0.25.0
4399+
"@esbuild/win32-arm64": 0.25.0
4400+
"@esbuild/win32-ia32": 0.25.0
4401+
"@esbuild/win32-x64": 0.25.0
43784402
dependenciesMeta:
4403+
"@esbuild/aix-ppc64":
4404+
optional: true
43794405
"@esbuild/android-arm":
43804406
optional: true
43814407
"@esbuild/android-arm64":
@@ -4408,8 +4434,12 @@ __metadata:
44084434
optional: true
44094435
"@esbuild/linux-x64":
44104436
optional: true
4437+
"@esbuild/netbsd-arm64":
4438+
optional: true
44114439
"@esbuild/netbsd-x64":
44124440
optional: true
4441+
"@esbuild/openbsd-arm64":
4442+
optional: true
44134443
"@esbuild/openbsd-x64":
44144444
optional: true
44154445
"@esbuild/sunos-x64":
@@ -4422,7 +4452,7 @@ __metadata:
44224452
optional: true
44234453
bin:
44244454
esbuild: bin/esbuild
4425-
checksum: 30a510de26068515693f2238d7e9697c68eb7ea3431fb31e6b5797dff576663c79e7c5076a8a227b4011c8050967655af2ab5775c2bffc554a62641bbb742e91
4455+
checksum: 4d1e0cb7c059a373ea3edb20ca5efcea29efada03e4ea82b2b8ab1f2f062e4791e9744213308775d26e07a0225a7d8250da93da5c8e07ef61bb93d58caab8cf9
44264456
languageName: node
44274457
linkType: hard
44284458

0 commit comments

Comments
 (0)