This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-js.git


The following commit(s) were added to refs/heads/main by this push:
     new e8d1428  chore: bump esbuild from 0.25.0 to 0.25.5 (#134)
e8d1428 is described below

commit e8d14286628541f085dac13febd9622802846301
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Tue Jun 3 10:55:11 2025 +0900

    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>
---
 package.json |   2 +-
 yarn.lock    | 306 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 154 insertions(+), 154 deletions(-)

diff --git a/package.json b/package.json
index 9409c69..f49c242 100644
--- a/package.json
+++ b/package.json
@@ -77,7 +77,7 @@
     "cross-env": "7.0.3",
     "del": "8.0.0",
     "del-cli": "6.0.0",
-    "esbuild": "0.25.0",
+    "esbuild": "0.25.5",
     "esbuild-plugin-alias": "0.2.1",
     "eslint": "9.27.0",
     "eslint-plugin-jest": "28.9.0",
diff --git a/yarn.lock b/yarn.lock
index 6812afc..3d0c694 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -354,130 +354,130 @@
   resolved 
"https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70";
   integrity 
sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
 
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.0.tgz#499600c5e1757a524990d5d92601f0ac3ce87f64";
-  integrity 
sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.0.tgz#b9b8231561a1dfb94eb31f4ee056b92a985c324f";
-  integrity 
sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.0.tgz#ca6e7888942505f13e88ac9f5f7d2a72f9facd2b";
-  integrity 
sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.0.tgz#e765ea753bac442dfc9cb53652ce8bd39d33e163";
-  integrity 
sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.0.tgz#fa394164b0d89d4fdc3a8a21989af70ef579fa2c";
-  integrity 
sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.0.tgz#91979d98d30ba6e7d69b22c617cc82bdad60e47a";
-  integrity 
sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.0.tgz#b97e97073310736b430a07b099d837084b85e9ce";
-  integrity 
sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.0.tgz#f3b694d0da61d9910ec7deff794d444cfbf3b6e7";
-  integrity 
sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.0.tgz#f921f699f162f332036d5657cad9036f7a993f73";
-  integrity 
sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.0.tgz#cc49305b3c6da317c900688995a4050e6cc91ca3";
-  integrity 
sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.0.tgz#3e0736fcfab16cff042dec806247e2c76e109e19";
-  integrity 
sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.0.tgz#ea2bf730883cddb9dfb85124232b5a875b8020c7";
-  integrity 
sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.0.tgz#4cababb14eede09248980a2d2d8b966464294ff1";
-  integrity 
sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.0.tgz#8860a4609914c065373a77242e985179658e1951";
-  integrity 
sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.0.tgz#baf26e20bb2d38cfb86ee282dff840c04f4ed987";
-  integrity 
sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.0.tgz#8323afc0d6cb1b6dc6e9fd21efd9e1542c3640a4";
-  integrity 
sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.0.tgz#08fcf60cb400ed2382e9f8e0f5590bac8810469a";
-  integrity 
sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.0.tgz#935c6c74e20f7224918fbe2e6c6fe865b6c6ea5b";
-  integrity 
sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.0.tgz#414677cef66d16c5a4d210751eb2881bb9c1b62b";
-  integrity 
sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.0.tgz#8fd55a4d08d25cdc572844f13c88d678c84d13f7";
-  integrity 
sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.0.tgz#0c48ddb1494bbc2d6bcbaa1429a7f465fa1dedde";
-  integrity 
sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.0.tgz#86ff9075d77962b60dd26203d7352f92684c8c92";
-  integrity 
sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.0.tgz#849c62327c3229467f5b5cd681bf50588442e96c";
-  integrity 
sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.0.tgz#f62eb480cd7cca088cb65bb46a6db25b725dc079";
-  integrity 
sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==
-
-"@esbuild/[email protected]":
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.0.tgz#c8e119a30a7c8d60b9d2e22d2073722dde3b710b";
-  integrity 
sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.5.tgz#4e0f91776c2b340e75558f60552195f6fad09f18";
+  integrity 
sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.5.tgz#bc766407f1718923f6b8079c8c61bf86ac3a6a4f";
+  integrity 
sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.5.tgz#4290d6d3407bae3883ad2cded1081a234473ce26";
+  integrity 
sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.5.tgz#40c11d9cbca4f2406548c8a9895d321bc3b35eff";
+  integrity 
sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.5.tgz#49d8bf8b1df95f759ac81eb1d0736018006d7e34";
+  integrity 
sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.5.tgz#e27a5d92a14886ef1d492fd50fc61a2d4d87e418";
+  integrity 
sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.5.tgz#97cede59d638840ca104e605cdb9f1b118ba0b1c";
+  integrity 
sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.5.tgz#71c77812042a1a8190c3d581e140d15b876b9c6f";
+  integrity 
sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.5.tgz#f7b7c8f97eff8ffd2e47f6c67eb5c9765f2181b8";
+  integrity 
sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.5.tgz#2a0be71b6cd8201fa559aea45598dffabc05d911";
+  integrity 
sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.5.tgz#763414463cd9ea6fa1f96555d2762f9f84c61783";
+  integrity 
sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.5.tgz#428cf2213ff786a502a52c96cf29d1fcf1eb8506";
+  integrity 
sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.5.tgz#5cbcc7fd841b4cd53358afd33527cd394e325d96";
+  integrity 
sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.5.tgz#0d954ab39ce4f5e50f00c4f8c4fd38f976c13ad9";
+  integrity 
sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.5.tgz#0e7dd30730505abd8088321e8497e94b547bfb1e";
+  integrity 
sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.5.tgz#5669af81327a398a336d7e40e320b5bbd6e6e72d";
+  integrity 
sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.5.tgz#b2357dd153aa49038967ddc1ffd90c68a9d2a0d4";
+  integrity 
sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.5.tgz#53b4dfb8fe1cee93777c9e366893bd3daa6ba63d";
+  integrity 
sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.5.tgz#a0206f6314ce7dc8713b7732703d0f58de1d1e79";
+  integrity 
sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.5.tgz#2a796c87c44e8de78001d808c77d948a21ec22fd";
+  integrity 
sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.5.tgz#28d0cd8909b7fa3953af998f2b2ed34f576728f0";
+  integrity 
sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.5.tgz#a28164f5b997e8247d407e36c90d3fd5ddbe0dc5";
+  integrity 
sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.5.tgz#6eadbead38e8bd12f633a5190e45eff80e24007e";
+  integrity 
sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.5.tgz#bab6288005482f9ed2adb9ded7e88eba9a62cc0d";
+  integrity 
sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==
+
+"@esbuild/[email protected]":
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.5.tgz#7fc114af5f6563f19f73324b5d5ff36ece0803d1";
+  integrity 
sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==
 
 "@eslint-community/eslint-utils@^4.2.0":
   version "4.4.0"
@@ -2914,36 +2914,36 @@ [email protected]:
   resolved 
"https://registry.yarnpkg.com/esbuild-plugin-alias/-/esbuild-plugin-alias-0.2.1.tgz#45a86cb941e20e7c2bc68a2bea53562172494fcb";
   integrity 
sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==
 
[email protected]:
-  version "0.25.0"
-  resolved 
"https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.0.tgz#0de1787a77206c5a79eeb634a623d39b5006ce92";
-  integrity 
sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==
[email protected]:
+  version "0.25.5"
+  resolved 
"https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.5.tgz#71075054993fdfae76c66586f9b9c1f8d7edd430";
+  integrity 
sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==
   optionalDependencies:
-    "@esbuild/aix-ppc64" "0.25.0"
-    "@esbuild/android-arm" "0.25.0"
-    "@esbuild/android-arm64" "0.25.0"
-    "@esbuild/android-x64" "0.25.0"
-    "@esbuild/darwin-arm64" "0.25.0"
-    "@esbuild/darwin-x64" "0.25.0"
-    "@esbuild/freebsd-arm64" "0.25.0"
-    "@esbuild/freebsd-x64" "0.25.0"
-    "@esbuild/linux-arm" "0.25.0"
-    "@esbuild/linux-arm64" "0.25.0"
-    "@esbuild/linux-ia32" "0.25.0"
-    "@esbuild/linux-loong64" "0.25.0"
-    "@esbuild/linux-mips64el" "0.25.0"
-    "@esbuild/linux-ppc64" "0.25.0"
-    "@esbuild/linux-riscv64" "0.25.0"
-    "@esbuild/linux-s390x" "0.25.0"
-    "@esbuild/linux-x64" "0.25.0"
-    "@esbuild/netbsd-arm64" "0.25.0"
-    "@esbuild/netbsd-x64" "0.25.0"
-    "@esbuild/openbsd-arm64" "0.25.0"
-    "@esbuild/openbsd-x64" "0.25.0"
-    "@esbuild/sunos-x64" "0.25.0"
-    "@esbuild/win32-arm64" "0.25.0"
-    "@esbuild/win32-ia32" "0.25.0"
-    "@esbuild/win32-x64" "0.25.0"
+    "@esbuild/aix-ppc64" "0.25.5"
+    "@esbuild/android-arm" "0.25.5"
+    "@esbuild/android-arm64" "0.25.5"
+    "@esbuild/android-x64" "0.25.5"
+    "@esbuild/darwin-arm64" "0.25.5"
+    "@esbuild/darwin-x64" "0.25.5"
+    "@esbuild/freebsd-arm64" "0.25.5"
+    "@esbuild/freebsd-x64" "0.25.5"
+    "@esbuild/linux-arm" "0.25.5"
+    "@esbuild/linux-arm64" "0.25.5"
+    "@esbuild/linux-ia32" "0.25.5"
+    "@esbuild/linux-loong64" "0.25.5"
+    "@esbuild/linux-mips64el" "0.25.5"
+    "@esbuild/linux-ppc64" "0.25.5"
+    "@esbuild/linux-riscv64" "0.25.5"
+    "@esbuild/linux-s390x" "0.25.5"
+    "@esbuild/linux-x64" "0.25.5"
+    "@esbuild/netbsd-arm64" "0.25.5"
+    "@esbuild/netbsd-x64" "0.25.5"
+    "@esbuild/openbsd-arm64" "0.25.5"
+    "@esbuild/openbsd-x64" "0.25.5"
+    "@esbuild/sunos-x64" "0.25.5"
+    "@esbuild/win32-arm64" "0.25.5"
+    "@esbuild/win32-ia32" "0.25.5"
+    "@esbuild/win32-x64" "0.25.5"
 
 escalade@^3.1.1:
   version "3.1.2"

Reply via email to