Skip to content

Commit e8d1428

Browse files
chore: bump esbuild from 0.25.0 to 0.25.5 (#134)
Bumps [esbuild](https://github.com/evanw/esbuild) from 0.25.0 to 0.25.5. <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.5</h2> <ul> <li> <p>Fix a regression with <code>browser</code> in <code>package.json</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4187">#4187</a>)</p> <p>The fix to <a href="https://redirect.github.com/evanw/esbuild/issues/4144">#4144</a> in version 0.25.3 introduced a regression that caused <code>browser</code> overrides specified in <code>package.json</code> to fail to override relative path names that end in a trailing slash. That behavior change affected the <code>[email protected]</code> package. This regression has been fixed, and now has test coverage.</p> </li> <li> <p>Add support for certain keywords as TypeScript tuple labels (<a href="https://redirect.github.com/evanw/esbuild/issues/4192">#4192</a>)</p> <p>Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a <code>?</code> modifier. These labels included <code>function</code>, <code>import</code>, <code>infer</code>, <code>new</code>, <code>readonly</code>, and <code>typeof</code>. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:</p> <pre lang="ts"><code>type Foo = [ value: any, readonly?: boolean, // This is now parsed correctly ] </code></pre> </li> <li> <p>Add CSS prefixes for the <code>stretch</code> sizing value (<a href="https://redirect.github.com/evanw/esbuild/issues/4184">#4184</a>)</p> <p>This release adds support for prefixing CSS declarations such as <code>div { width: stretch }</code>. That CSS is now transformed into this depending on what the <code>--target=</code> setting includes:</p> <pre lang="css"><code>div { width: -webkit-fill-available; width: -moz-available; width: stretch; } </code></pre> </li> </ul> <h2>v0.25.4</h2> <ul> <li> <p>Add simple support for CORS to esbuild's development server (<a href="https://redirect.github.com/evanw/esbuild/issues/4125">#4125</a>)</p> <p>Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as &quot;debugging in production&quot; by having your production website load code from <code>localhost</code> where the esbuild development server is running.</p> <p>To enable this use case, esbuild is adding a feature to allow <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS">Cross-Origin Resource Sharing</a> (a.k.a. CORS) for <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS#simple_requests">simple requests</a>. Specifically, passing your origin to the new <code>cors</code> option will now set the <code>Access-Control-Allow-Origin</code> response header when the request has a matching <code>Origin</code> header. Note that this currently only works for requests that don't send a preflight <code>OPTIONS</code> request, as esbuild's development server doesn't currently support <code>OPTIONS</code> requests.</p> <p>Some examples:</p> <ul> <li> <p><strong>CLI:</strong></p> <pre><code>esbuild --servedir=. --cors-origin=https://example.com </code></pre> </li> <li> <p><strong>JS:</strong></p> <pre lang="js"><code>const ctx = await esbuild.context({}) await ctx.serve({ servedir: '.', cors: { </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.md">esbuild's changelog</a>.</em></p> <blockquote> <h2>0.25.5</h2> <ul> <li> <p>Fix a regression with <code>browser</code> in <code>package.json</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4187">#4187</a>)</p> <p>The fix to <a href="https://redirect.github.com/evanw/esbuild/issues/4144">#4144</a> in version 0.25.3 introduced a regression that caused <code>browser</code> overrides specified in <code>package.json</code> to fail to override relative path names that end in a trailing slash. That behavior change affected the <code>[email protected]</code> package. This regression has been fixed, and now has test coverage.</p> </li> <li> <p>Add support for certain keywords as TypeScript tuple labels (<a href="https://redirect.github.com/evanw/esbuild/issues/4192">#4192</a>)</p> <p>Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a <code>?</code> modifier. These labels included <code>function</code>, <code>import</code>, <code>infer</code>, <code>new</code>, <code>readonly</code>, and <code>typeof</code>. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:</p> <pre lang="ts"><code>type Foo = [ value: any, readonly?: boolean, // This is now parsed correctly ] </code></pre> </li> <li> <p>Add CSS prefixes for the <code>stretch</code> sizing value (<a href="https://redirect.github.com/evanw/esbuild/issues/4184">#4184</a>)</p> <p>This release adds support for prefixing CSS declarations such as <code>div { width: stretch }</code>. That CSS is now transformed into this depending on what the <code>--target=</code> setting includes:</p> <pre lang="css"><code>div { width: -webkit-fill-available; width: -moz-available; width: stretch; } </code></pre> </li> </ul> <h2>0.25.4</h2> <ul> <li> <p>Add simple support for CORS to esbuild's development server (<a href="https://redirect.github.com/evanw/esbuild/issues/4125">#4125</a>)</p> <p>Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as &quot;debugging in production&quot; by having your production website load code from <code>localhost</code> where the esbuild development server is running.</p> <p>To enable this use case, esbuild is adding a feature to allow <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS">Cross-Origin Resource Sharing</a> (a.k.a. CORS) for <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS#simple_requests">simple requests</a>. Specifically, passing your origin to the new <code>cors</code> option will now set the <code>Access-Control-Allow-Origin</code> response header when the request has a matching <code>Origin</code> header. Note that this currently only works for requests that don't send a preflight <code>OPTIONS</code> request, as esbuild's development server doesn't currently support <code>OPTIONS</code> requests.</p> <p>Some examples:</p> <ul> <li> <p><strong>CLI:</strong></p> <pre><code>esbuild --servedir=. --cors-origin=https://example.com </code></pre> </li> <li> <p><strong>JS:</strong></p> <pre lang="js"><code>const ctx = await esbuild.context({}) await ctx.serve({ </code></pre> </li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanw/esbuild/commit/ea453bf687c8e5cf3c5f11aae372c5ca33be0c98"><code>ea453bf</code></a> publish 0.25.5 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/223ddc6a5f1b4721573765eb5b8571888f64313e"><code>223ddc6</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4187">#4187</a>: browser <code>package.json</code> regression</li> <li><a href="https://github.com/evanw/esbuild/commit/b2c825150b7aa471bcc9b4302ba990557596c35f"><code>b2c8251</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4192">#4192</a>: typescript tuple label parser edge case</li> <li><a href="https://github.com/evanw/esbuild/commit/28cf2f3e7f4b5b2e629171c0e340fbb406ce68f8"><code>28cf2f3</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4184">#4184</a>: css prefixes for <code>stretch</code></li> <li><a href="https://github.com/evanw/esbuild/commit/bee1b09cd565fd122c798f57c9617111f7c999ca"><code>bee1b09</code></a> fix comment indents</li> <li><a href="https://github.com/evanw/esbuild/commit/9ddfe5fa15a5e782f8118459a1b8aa3f9f9e87c2"><code>9ddfe5f</code></a> run <code>make update-compat-table</code></li> <li><a href="https://github.com/evanw/esbuild/commit/c339f34484463f597b77c8450c393bfdd26c629e"><code>c339f34</code></a> fix a misplaced comment</li> <li><a href="https://github.com/evanw/esbuild/commit/218d29e9da018d60cf87b8fb496bb8167936ff54"><code>218d29e</code></a> publish 0.25.4 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/e66cd0bf6daebff56527540c433c69e49e9dcb13"><code>e66cd0b</code></a> dev server: simple support for CORS requests (<a href="https://redirect.github.com/evanw/esbuild/issues/4171">#4171</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/8bf33685941e857c2b0f10c4d719a895f9d1ceea"><code>8bf3368</code></a> js api: validate some options as arrays of strings</li> <li>Additional commits viewable in <a href="https://github.com/evanw/esbuild/compare/v0.25.0...v0.25.5">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.25.0&new-version=0.25.5)](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) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c9ee085 commit e8d1428

File tree

2 files changed

+154
-154
lines changed

2 files changed

+154
-154
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"cross-env": "7.0.3",
7878
"del": "8.0.0",
7979
"del-cli": "6.0.0",
80-
"esbuild": "0.25.0",
80+
"esbuild": "0.25.5",
8181
"esbuild-plugin-alias": "0.2.1",
8282
"eslint": "9.27.0",
8383
"eslint-plugin-jest": "28.9.0",

yarn.lock

Lines changed: 153 additions & 153 deletions
Original file line numberDiff line numberDiff line change
@@ -354,130 +354,130 @@
354354
resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70"
355355
integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
356356

357-
"@esbuild/[email protected].0":
358-
version "0.25.0"
359-
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.0.tgz#499600c5e1757a524990d5d92601f0ac3ce87f64"
360-
integrity sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==
361-
362-
"@esbuild/[email protected].0":
363-
version "0.25.0"
364-
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.0.tgz#b9b8231561a1dfb94eb31f4ee056b92a985c324f"
365-
integrity sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==
366-
367-
"@esbuild/[email protected].0":
368-
version "0.25.0"
369-
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.0.tgz#ca6e7888942505f13e88ac9f5f7d2a72f9facd2b"
370-
integrity sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==
371-
372-
"@esbuild/[email protected].0":
373-
version "0.25.0"
374-
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.0.tgz#e765ea753bac442dfc9cb53652ce8bd39d33e163"
375-
integrity sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==
376-
377-
"@esbuild/[email protected].0":
378-
version "0.25.0"
379-
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.0.tgz#fa394164b0d89d4fdc3a8a21989af70ef579fa2c"
380-
integrity sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==
381-
382-
"@esbuild/[email protected].0":
383-
version "0.25.0"
384-
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.0.tgz#91979d98d30ba6e7d69b22c617cc82bdad60e47a"
385-
integrity sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==
386-
387-
"@esbuild/[email protected].0":
388-
version "0.25.0"
389-
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.0.tgz#b97e97073310736b430a07b099d837084b85e9ce"
390-
integrity sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==
391-
392-
"@esbuild/[email protected].0":
393-
version "0.25.0"
394-
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.0.tgz#f3b694d0da61d9910ec7deff794d444cfbf3b6e7"
395-
integrity sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==
396-
397-
"@esbuild/[email protected].0":
398-
version "0.25.0"
399-
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.0.tgz#f921f699f162f332036d5657cad9036f7a993f73"
400-
integrity sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==
401-
402-
"@esbuild/[email protected].0":
403-
version "0.25.0"
404-
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.0.tgz#cc49305b3c6da317c900688995a4050e6cc91ca3"
405-
integrity sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==
406-
407-
"@esbuild/[email protected].0":
408-
version "0.25.0"
409-
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.0.tgz#3e0736fcfab16cff042dec806247e2c76e109e19"
410-
integrity sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==
411-
412-
"@esbuild/[email protected].0":
413-
version "0.25.0"
414-
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.0.tgz#ea2bf730883cddb9dfb85124232b5a875b8020c7"
415-
integrity sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==
416-
417-
"@esbuild/[email protected].0":
418-
version "0.25.0"
419-
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.0.tgz#4cababb14eede09248980a2d2d8b966464294ff1"
420-
integrity sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==
421-
422-
"@esbuild/[email protected].0":
423-
version "0.25.0"
424-
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.0.tgz#8860a4609914c065373a77242e985179658e1951"
425-
integrity sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==
426-
427-
"@esbuild/[email protected].0":
428-
version "0.25.0"
429-
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.0.tgz#baf26e20bb2d38cfb86ee282dff840c04f4ed987"
430-
integrity sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==
431-
432-
"@esbuild/[email protected].0":
433-
version "0.25.0"
434-
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.0.tgz#8323afc0d6cb1b6dc6e9fd21efd9e1542c3640a4"
435-
integrity sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==
436-
437-
"@esbuild/[email protected].0":
438-
version "0.25.0"
439-
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.0.tgz#08fcf60cb400ed2382e9f8e0f5590bac8810469a"
440-
integrity sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==
441-
442-
"@esbuild/[email protected].0":
443-
version "0.25.0"
444-
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.0.tgz#935c6c74e20f7224918fbe2e6c6fe865b6c6ea5b"
445-
integrity sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==
446-
447-
"@esbuild/[email protected].0":
448-
version "0.25.0"
449-
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.0.tgz#414677cef66d16c5a4d210751eb2881bb9c1b62b"
450-
integrity sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==
451-
452-
"@esbuild/[email protected].0":
453-
version "0.25.0"
454-
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.0.tgz#8fd55a4d08d25cdc572844f13c88d678c84d13f7"
455-
integrity sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==
456-
457-
"@esbuild/[email protected].0":
458-
version "0.25.0"
459-
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.0.tgz#0c48ddb1494bbc2d6bcbaa1429a7f465fa1dedde"
460-
integrity sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==
461-
462-
"@esbuild/[email protected].0":
463-
version "0.25.0"
464-
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.0.tgz#86ff9075d77962b60dd26203d7352f92684c8c92"
465-
integrity sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==
466-
467-
"@esbuild/[email protected].0":
468-
version "0.25.0"
469-
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.0.tgz#849c62327c3229467f5b5cd681bf50588442e96c"
470-
integrity sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==
471-
472-
"@esbuild/[email protected].0":
473-
version "0.25.0"
474-
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.0.tgz#f62eb480cd7cca088cb65bb46a6db25b725dc079"
475-
integrity sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==
476-
477-
"@esbuild/[email protected].0":
478-
version "0.25.0"
479-
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.0.tgz#c8e119a30a7c8d60b9d2e22d2073722dde3b710b"
480-
integrity sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==
357+
"@esbuild/[email protected].5":
358+
version "0.25.5"
359+
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.5.tgz#4e0f91776c2b340e75558f60552195f6fad09f18"
360+
integrity sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==
361+
362+
"@esbuild/[email protected].5":
363+
version "0.25.5"
364+
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.5.tgz#bc766407f1718923f6b8079c8c61bf86ac3a6a4f"
365+
integrity sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==
366+
367+
"@esbuild/[email protected].5":
368+
version "0.25.5"
369+
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.5.tgz#4290d6d3407bae3883ad2cded1081a234473ce26"
370+
integrity sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==
371+
372+
"@esbuild/[email protected].5":
373+
version "0.25.5"
374+
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.5.tgz#40c11d9cbca4f2406548c8a9895d321bc3b35eff"
375+
integrity sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==
376+
377+
"@esbuild/[email protected].5":
378+
version "0.25.5"
379+
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.5.tgz#49d8bf8b1df95f759ac81eb1d0736018006d7e34"
380+
integrity sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==
381+
382+
"@esbuild/[email protected].5":
383+
version "0.25.5"
384+
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.5.tgz#e27a5d92a14886ef1d492fd50fc61a2d4d87e418"
385+
integrity sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==
386+
387+
"@esbuild/[email protected].5":
388+
version "0.25.5"
389+
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.5.tgz#97cede59d638840ca104e605cdb9f1b118ba0b1c"
390+
integrity sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==
391+
392+
"@esbuild/[email protected].5":
393+
version "0.25.5"
394+
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.5.tgz#71c77812042a1a8190c3d581e140d15b876b9c6f"
395+
integrity sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==
396+
397+
"@esbuild/[email protected].5":
398+
version "0.25.5"
399+
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.5.tgz#f7b7c8f97eff8ffd2e47f6c67eb5c9765f2181b8"
400+
integrity sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==
401+
402+
"@esbuild/[email protected].5":
403+
version "0.25.5"
404+
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.5.tgz#2a0be71b6cd8201fa559aea45598dffabc05d911"
405+
integrity sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==
406+
407+
"@esbuild/[email protected].5":
408+
version "0.25.5"
409+
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.5.tgz#763414463cd9ea6fa1f96555d2762f9f84c61783"
410+
integrity sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==
411+
412+
"@esbuild/[email protected].5":
413+
version "0.25.5"
414+
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.5.tgz#428cf2213ff786a502a52c96cf29d1fcf1eb8506"
415+
integrity sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==
416+
417+
"@esbuild/[email protected].5":
418+
version "0.25.5"
419+
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.5.tgz#5cbcc7fd841b4cd53358afd33527cd394e325d96"
420+
integrity sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==
421+
422+
"@esbuild/[email protected].5":
423+
version "0.25.5"
424+
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.5.tgz#0d954ab39ce4f5e50f00c4f8c4fd38f976c13ad9"
425+
integrity sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==
426+
427+
"@esbuild/[email protected].5":
428+
version "0.25.5"
429+
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.5.tgz#0e7dd30730505abd8088321e8497e94b547bfb1e"
430+
integrity sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==
431+
432+
"@esbuild/[email protected].5":
433+
version "0.25.5"
434+
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.5.tgz#5669af81327a398a336d7e40e320b5bbd6e6e72d"
435+
integrity sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==
436+
437+
"@esbuild/[email protected].5":
438+
version "0.25.5"
439+
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.5.tgz#b2357dd153aa49038967ddc1ffd90c68a9d2a0d4"
440+
integrity sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==
441+
442+
"@esbuild/[email protected].5":
443+
version "0.25.5"
444+
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.5.tgz#53b4dfb8fe1cee93777c9e366893bd3daa6ba63d"
445+
integrity sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==
446+
447+
"@esbuild/[email protected].5":
448+
version "0.25.5"
449+
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.5.tgz#a0206f6314ce7dc8713b7732703d0f58de1d1e79"
450+
integrity sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==
451+
452+
"@esbuild/[email protected].5":
453+
version "0.25.5"
454+
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.5.tgz#2a796c87c44e8de78001d808c77d948a21ec22fd"
455+
integrity sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==
456+
457+
"@esbuild/[email protected].5":
458+
version "0.25.5"
459+
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.5.tgz#28d0cd8909b7fa3953af998f2b2ed34f576728f0"
460+
integrity sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==
461+
462+
"@esbuild/[email protected].5":
463+
version "0.25.5"
464+
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.5.tgz#a28164f5b997e8247d407e36c90d3fd5ddbe0dc5"
465+
integrity sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==
466+
467+
"@esbuild/[email protected].5":
468+
version "0.25.5"
469+
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.5.tgz#6eadbead38e8bd12f633a5190e45eff80e24007e"
470+
integrity sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==
471+
472+
"@esbuild/[email protected].5":
473+
version "0.25.5"
474+
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.5.tgz#bab6288005482f9ed2adb9ded7e88eba9a62cc0d"
475+
integrity sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==
476+
477+
"@esbuild/[email protected].5":
478+
version "0.25.5"
479+
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.5.tgz#7fc114af5f6563f19f73324b5d5ff36ece0803d1"
480+
integrity sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==
481481

482482
"@eslint-community/eslint-utils@^4.2.0":
483483
version "4.4.0"
@@ -2914,36 +2914,36 @@ [email protected]:
29142914
resolved "https://registry.yarnpkg.com/esbuild-plugin-alias/-/esbuild-plugin-alias-0.2.1.tgz#45a86cb941e20e7c2bc68a2bea53562172494fcb"
29152915
integrity sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==
29162916

2917-
2918-
version "0.25.0"
2919-
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.0.tgz#0de1787a77206c5a79eeb634a623d39b5006ce92"
2920-
integrity sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==
2917+
2918+
version "0.25.5"
2919+
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.5.tgz#71075054993fdfae76c66586f9b9c1f8d7edd430"
2920+
integrity sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==
29212921
optionalDependencies:
2922-
"@esbuild/aix-ppc64" "0.25.0"
2923-
"@esbuild/android-arm" "0.25.0"
2924-
"@esbuild/android-arm64" "0.25.0"
2925-
"@esbuild/android-x64" "0.25.0"
2926-
"@esbuild/darwin-arm64" "0.25.0"
2927-
"@esbuild/darwin-x64" "0.25.0"
2928-
"@esbuild/freebsd-arm64" "0.25.0"
2929-
"@esbuild/freebsd-x64" "0.25.0"
2930-
"@esbuild/linux-arm" "0.25.0"
2931-
"@esbuild/linux-arm64" "0.25.0"
2932-
"@esbuild/linux-ia32" "0.25.0"
2933-
"@esbuild/linux-loong64" "0.25.0"
2934-
"@esbuild/linux-mips64el" "0.25.0"
2935-
"@esbuild/linux-ppc64" "0.25.0"
2936-
"@esbuild/linux-riscv64" "0.25.0"
2937-
"@esbuild/linux-s390x" "0.25.0"
2938-
"@esbuild/linux-x64" "0.25.0"
2939-
"@esbuild/netbsd-arm64" "0.25.0"
2940-
"@esbuild/netbsd-x64" "0.25.0"
2941-
"@esbuild/openbsd-arm64" "0.25.0"
2942-
"@esbuild/openbsd-x64" "0.25.0"
2943-
"@esbuild/sunos-x64" "0.25.0"
2944-
"@esbuild/win32-arm64" "0.25.0"
2945-
"@esbuild/win32-ia32" "0.25.0"
2946-
"@esbuild/win32-x64" "0.25.0"
2922+
"@esbuild/aix-ppc64" "0.25.5"
2923+
"@esbuild/android-arm" "0.25.5"
2924+
"@esbuild/android-arm64" "0.25.5"
2925+
"@esbuild/android-x64" "0.25.5"
2926+
"@esbuild/darwin-arm64" "0.25.5"
2927+
"@esbuild/darwin-x64" "0.25.5"
2928+
"@esbuild/freebsd-arm64" "0.25.5"
2929+
"@esbuild/freebsd-x64" "0.25.5"
2930+
"@esbuild/linux-arm" "0.25.5"
2931+
"@esbuild/linux-arm64" "0.25.5"
2932+
"@esbuild/linux-ia32" "0.25.5"
2933+
"@esbuild/linux-loong64" "0.25.5"
2934+
"@esbuild/linux-mips64el" "0.25.5"
2935+
"@esbuild/linux-ppc64" "0.25.5"
2936+
"@esbuild/linux-riscv64" "0.25.5"
2937+
"@esbuild/linux-s390x" "0.25.5"
2938+
"@esbuild/linux-x64" "0.25.5"
2939+
"@esbuild/netbsd-arm64" "0.25.5"
2940+
"@esbuild/netbsd-x64" "0.25.5"
2941+
"@esbuild/openbsd-arm64" "0.25.5"
2942+
"@esbuild/openbsd-x64" "0.25.5"
2943+
"@esbuild/sunos-x64" "0.25.5"
2944+
"@esbuild/win32-arm64" "0.25.5"
2945+
"@esbuild/win32-ia32" "0.25.5"
2946+
"@esbuild/win32-x64" "0.25.5"
29472947

29482948
escalade@^3.1.1:
29492949
version "3.1.2"

0 commit comments

Comments
 (0)