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 3e4cebd  chore: bump esbuild from 0.25.8 to 0.25.9 (#260)
3e4cebd is described below

commit 3e4cebdf8e051ff05a08732ba0bf29950c5e5eb0
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Wed Aug 27 06:17:55 2025 +0900

    chore: bump esbuild from 0.25.8 to 0.25.9 (#260)
    
    Bumps [esbuild](https://github.com/evanw/esbuild) from 0.25.8 to 0.25.9.
    <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.9</h2>
    <ul>
    <li>
    <p>Better support building projects that use Yarn on Windows (<a
    href="https://redirect.github.com/evanw/esbuild/issues/3131";>#3131</a>,
    <a
    href="https://redirect.github.com/evanw/esbuild/issues/3663";>#3663</a>)</p>
    <p>With this release, you can now use esbuild to bundle projects that
    use Yarn Plug'n'Play on Windows on drives other than the <code>C:</code>
    drive. The problem was as follows:</p>
    <ol>
    <li>Yarn in Plug'n'Play mode on Windows stores its global module cache
    on the <code>C:</code> drive</li>
    <li>Some developers put their projects on the <code>D:</code> drive</li>
    <li>Yarn generates relative paths that use <code>../..</code> to get
    from the project directory to the cache directory</li>
    <li>Windows-style paths don't support directory traversal between drives
    via <code>..</code> (so <code>D:\..</code> is just <code>D:</code>)</li>
    <li>I didn't have access to a Windows machine for testing this edge
    case</li>
    </ol>
    <p>Yarn works around this edge case by pretending Windows-style paths
    beginning with <code>C:\</code> are actually Unix-style paths beginning
    with <code>/C:/</code>, so the <code>../..</code> path segments are able
    to navigate across drives inside Yarn's implementation. This was broken
    for a long time in esbuild but I finally got access to a Windows machine
    and was able to debug and fix this edge case. So you should now be able
    to bundle these projects with esbuild.</p>
    </li>
    <li>
    <p>Preserve parentheses around function expressions (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4252";>#4252</a>)</p>
    <p>The V8 JavaScript VM uses parentheses around function expressions as
    an optimization hint to immediately compile the function. Otherwise the
    function would be lazily-compiled, which has additional overhead if that
    function is always called immediately as lazy compilation involves
    parsing the function twice. You can read <a
    href="https://v8.dev/blog/preparser";>V8's blog post about this</a> for
    more details.</p>
    <p>Previously esbuild did not represent parentheses around functions in
    the AST so they were lost during compilation. With this change, esbuild
    will now preserve parentheses around function expressions when they are
    present in the original source code. This means these optimization hints
    will not be lost when bundling with esbuild. In addition, esbuild will
    now automatically add this optimization hint to immediately-invoked
    function expressions. Here's an example:</p>
    <pre lang="js"><code>// Original code
    const fn0 = () =&gt; 0
    const fn1 = (() =&gt; 1)
    console.log(fn0, function() { return fn1() }())
    <p>// Old output<br />
    const fn0 = () =&gt; 0;<br />
    const fn1 = () =&gt; 1;<br />
    console.log(fn0, function() {<br />
    return fn1();<br />
    }());</p>
    <p>// New output<br />
    const fn0 = () =&gt; 0;<br />
    const fn1 = (() =&gt; 1);<br />
    console.log(fn0, (function() {<br />
    return fn1();<br />
    })());<br />
    </code></pre></p>
    <p>Note that you do not want to wrap all function expressions in
    parentheses. This optimization hint should only be used for functions
    that are called on initial load. Using this hint for functions that are
    not called on initial load will unnecessarily delay the initial load.
    Again, see V8's blog post linked above for details.</p>
    </li>
    <li>
    <p>Update Go from 1.23.10 to 1.23.12 (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4257";>#4257</a>,
    <a
    href="https://redirect.github.com/evanw/esbuild/pull/4258";>#4258</a>)</p>
    <p>This should have no effect on existing code as this version change
    does not change Go's operating system support. It may remove certain
    false positive reports (specifically CVE-2025-4674 and CVE-2025-47907)
    from vulnerability scanners that only detect which version of the Go
    compiler esbuild uses.</p>
    </li>
    </ul>
    </blockquote>
    </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.9</h2>
    <ul>
    <li>
    <p>Better support building projects that use Yarn on Windows (<a
    href="https://redirect.github.com/evanw/esbuild/issues/3131";>#3131</a>,
    <a
    href="https://redirect.github.com/evanw/esbuild/issues/3663";>#3663</a>)</p>
    <p>With this release, you can now use esbuild to bundle projects that
    use Yarn Plug'n'Play on Windows on drives other than the <code>C:</code>
    drive. The problem was as follows:</p>
    <ol>
    <li>Yarn in Plug'n'Play mode on Windows stores its global module cache
    on the <code>C:</code> drive</li>
    <li>Some developers put their projects on the <code>D:</code> drive</li>
    <li>Yarn generates relative paths that use <code>../..</code> to get
    from the project directory to the cache directory</li>
    <li>Windows-style paths don't support directory traversal between drives
    via <code>..</code> (so <code>D:\..</code> is just <code>D:</code>)</li>
    <li>I didn't have access to a Windows machine for testing this edge
    case</li>
    </ol>
    <p>Yarn works around this edge case by pretending Windows-style paths
    beginning with <code>C:\</code> are actually Unix-style paths beginning
    with <code>/C:/</code>, so the <code>../..</code> path segments are able
    to navigate across drives inside Yarn's implementation. This was broken
    for a long time in esbuild but I finally got access to a Windows machine
    and was able to debug and fix this edge case. So you should now be able
    to bundle these projects with esbuild.</p>
    </li>
    <li>
    <p>Preserve parentheses around function expressions (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4252";>#4252</a>)</p>
    <p>The V8 JavaScript VM uses parentheses around function expressions as
    an optimization hint to immediately compile the function. Otherwise the
    function would be lazily-compiled, which has additional overhead if that
    function is always called immediately as lazy compilation involves
    parsing the function twice. You can read <a
    href="https://v8.dev/blog/preparser";>V8's blog post about this</a> for
    more details.</p>
    <p>Previously esbuild did not represent parentheses around functions in
    the AST so they were lost during compilation. With this change, esbuild
    will now preserve parentheses around function expressions when they are
    present in the original source code. This means these optimization hints
    will not be lost when bundling with esbuild. In addition, esbuild will
    now automatically add this optimization hint to immediately-invoked
    function expressions. Here's an example:</p>
    <pre lang="js"><code>// Original code
    const fn0 = () =&gt; 0
    const fn1 = (() =&gt; 1)
    console.log(fn0, function() { return fn1() }())
    <p>// Old output<br />
    const fn0 = () =&gt; 0;<br />
    const fn1 = () =&gt; 1;<br />
    console.log(fn0, function() {<br />
    return fn1();<br />
    }());</p>
    <p>// New output<br />
    const fn0 = () =&gt; 0;<br />
    const fn1 = (() =&gt; 1);<br />
    console.log(fn0, (function() {<br />
    return fn1();<br />
    })());<br />
    </code></pre></p>
    <p>Note that you do not want to wrap all function expressions in
    parentheses. This optimization hint should only be used for functions
    that are called on initial load. Using this hint for functions that are
    not called on initial load will unnecessarily delay the initial load.
    Again, see V8's blog post linked above for details.</p>
    </li>
    <li>
    <p>Update Go from 1.23.10 to 1.23.12 (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4257";>#4257</a>,
    <a
    href="https://redirect.github.com/evanw/esbuild/pull/4258";>#4258</a>)</p>
    <p>This should have no effect on existing code as this version change
    does not change Go's operating system support. It may remove certain
    false positive reports (specifically CVE-2025-4674 and CVE-2025-47907)
    from vulnerability scanners that only detect which version of the Go
    compiler esbuild uses.</p>
    </li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/195e05c16f03a341390feef38b8ebf17d3075e14";><code>195e05c</code></a>
    publish 0.25.9 to npm</li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/3dac33f2a2ba60387fb9aaca96b3e80b9e0512e0";><code>3dac33f</code></a>
    fix <a
    href="https://redirect.github.com/evanw/esbuild/issues/3131";>#3131</a>,
    fix <a
    href="https://redirect.github.com/evanw/esbuild/issues/3663";>#3663</a>:
    yarnpnp + windows + D drive</li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/0f2c5c8c11dc3fa2a4e9e82df202d0b607e59de4";><code>0f2c5c8</code></a>
    mock fs now supports multiple volumes on windows</li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/100a51e791ce714a1a90557bc9e5133fa0d38692";><code>100a51e</code></a>
    split out yarnpnp snapshot tests</li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/13aace38bd1243e440061d1611e90a46ef55029c";><code>13aace3</code></a>
    remove <code>C:</code> assumption from windows snapshot tests</li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/f1f413f18bce15a53fa4251f11a4747be94075e0";><code>f1f413f</code></a>
    fix <a
    href="https://redirect.github.com/evanw/esbuild/issues/4252";>#4252</a>:
    preserve parentheses around functions</li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/1bc809190bdb68ad27fc0a6e6d385b4f635c90e2";><code>1bc8091</code></a>
    fix <a
    href="https://redirect.github.com/evanw/esbuild/issues/4257";>#4257</a>,
    close <a
    href="https://redirect.github.com/evanw/esbuild/issues/4258";>#4258</a>:
    go 1.23.10 =&gt; 1.23.12</li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/bc52135d02f794f28777c8e00db91997e0d98cab";><code>bc52135</code></a>
    move the go compiler version to <code>go.version</code></li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/a0af5d1037c6e2509531151d153e875093f426b6";><code>a0af5d1</code></a>
    makefile: use <code>ESBUILD_VERSION</code> consistently</li>
    <li>See full diff in <a
    href="https://github.com/evanw/esbuild/compare/v0.25.8...v0.25.9";>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.8&new-version=0.25.9)](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    | 318 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 160 insertions(+), 160 deletions(-)

diff --git a/package.json b/package.json
index d63cc0f..0786707 100644
--- a/package.json
+++ b/package.json
@@ -72,7 +72,7 @@
     "cross-env": "10.0.0",
     "del": "8.0.0",
     "del-cli": "6.0.0",
-    "esbuild": "0.25.8",
+    "esbuild": "0.25.9",
     "esbuild-plugin-alias": "0.2.1",
     "eslint": "9.33.0",
     "eslint-plugin-jest": "29.0.1",
diff --git a/yarn.lock b/yarn.lock
index 4a41947..ca8d8fd 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -374,135 +374,135 @@
   resolved 
"https://registry.yarnpkg.com/@epic-web/invariant/-/invariant-1.0.0.tgz#1073e5dee6dd540410784990eb73e4acd25c9813";
   integrity 
sha512-lrTPqgvfFQtR/eY/qkIzp98OGdNJu0m5ji3q/nJI8v3SXkRKEnWiOxMmbvcSoAIzv/cGiuvRy57k4suKQSAdwA==
 
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.8.tgz#a1414903bb38027382f85f03dda6065056757727";
-  integrity 
sha512-urAvrUedIqEiFR3FYSLTWQgLu5tb+m0qZw0NBEasUeo6wuqatkMDaRT+1uABiGXEu5vqgPd7FGE1BhsAIy9QVA==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.8.tgz#c859994089e9767224269884061f89dae6fb51c6";
-  integrity 
sha512-OD3p7LYzWpLhZEyATcTSJ67qB5D+20vbtr6vHlHWSQYhKtzUYrETuWThmzFpZtFsBIxRvhO07+UgVA9m0i/O1w==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.8.tgz#96a8f2ca91c6cd29ea90b1af79d83761c8ba0059";
-  integrity 
sha512-RONsAvGCz5oWyePVnLdZY/HHwA++nxYWIX1atInlaW6SEkwq6XkP3+cb825EUcRs5Vss/lGh/2YxAb5xqc07Uw==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.8.tgz#a3a626c4fec4a024a9fa8c7679c39996e92916f0";
-  integrity 
sha512-yJAVPklM5+4+9dTeKwHOaA+LQkmrKFX96BM0A/2zQrbS6ENCmxc4OVoBs5dPkCCak2roAD+jKCdnmOqKszPkjA==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.8.tgz#a5e1252ca2983d566af1c0ea39aded65736fc66d";
-  integrity 
sha512-Jw0mxgIaYX6R8ODrdkLLPwBqHTtYHJSmzzd+QeytSugzQ0Vg4c5rDky5VgkoowbZQahCbsv1rT1KW72MPIkevw==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.8.tgz#5271b0df2bb12ce8df886704bfdd1c7cc01385d2";
-  integrity 
sha512-Vh2gLxxHnuoQ+GjPNvDSDRpoBCUzY4Pu0kBqMBDlK4fuWbKgGtmDIeEC081xi26PPjn+1tct+Bh8FjyLlw1Zlg==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.8.tgz#d0a0e7fdf19733b8bb1566b81df1aa0bb7e46ada";
-  integrity 
sha512-YPJ7hDQ9DnNe5vxOm6jaie9QsTwcKedPvizTVlqWG9GBSq+BuyWEDazlGaDTC5NGU4QJd666V0yqCBL2oWKPfA==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.8.tgz#2de8b2e0899d08f1cb1ef3128e159616e7e85343";
-  integrity 
sha512-MmaEXxQRdXNFsRN/KcIimLnSJrk2r5H8v+WVafRWz5xdSVmWLoITZQXcgehI2ZE6gioE6HirAEToM/RvFBeuhw==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.8.tgz#a4209efadc0c2975716458484a4e90c237c48ae9";
-  integrity 
sha512-WIgg00ARWv/uYLU7lsuDK00d/hHSfES5BzdWAdAig1ioV5kaFNrtK8EqGcUBJhYqotlUByUKz5Qo6u8tt7iD/w==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.8.tgz#ccd9e291c24cd8d9142d819d463e2e7200d25b19";
-  integrity 
sha512-FuzEP9BixzZohl1kLf76KEVOsxtIBFwCaLupVuk4eFVnOZfU+Wsn+x5Ryam7nILV2pkq2TqQM9EZPsOBuMC+kg==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.8.tgz#006ad1536d0c2b28fb3a1cf0b53bcb85aaf92c4d";
-  integrity 
sha512-A1D9YzRX1i+1AJZuFFUMP1E9fMaYY+GnSQil9Tlw05utlE86EKTUA7RjwHDkEitmLYiFsRd9HwKBPEftNdBfjg==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.8.tgz#127b3fbfb2c2e08b1397e985932f718f09a8f5c4";
-  integrity 
sha512-O7k1J/dwHkY1RMVvglFHl1HzutGEFFZ3kNiDMSOyUrB7WcoHGf96Sh+64nTRT26l3GMbCW01Ekh/ThKM5iI7hQ==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.8.tgz#837d1449517791e3fa7d82675a2d06d9f56cb340";
-  integrity 
sha512-uv+dqfRazte3BzfMp8PAQXmdGHQt2oC/y2ovwpTteqrMx2lwaksiFZ/bdkXJC19ttTvNXBuWH53zy/aTj1FgGw==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.8.tgz#aa2e3bd93ab8df084212f1895ca4b03c42d9e0fe";
-  integrity 
sha512-GyG0KcMi1GBavP5JgAkkstMGyMholMDybAf8wF5A70CALlDM2p/f7YFE7H92eDeH/VBtFJA5MT4nRPDGg4JuzQ==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.8.tgz#a340620e31093fef72767dd28ab04214b3442083";
-  integrity 
sha512-rAqDYFv3yzMrq7GIcen3XP7TUEG/4LK86LUPMIz6RT8A6pRIDn0sDcvjudVZBiiTcZCY9y2SgYX2lgK3AF+1eg==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.8.tgz#ddfed266c8c13f5efb3105a0cd47f6dcd0e79e71";
-  integrity 
sha512-Xutvh6VjlbcHpsIIbwY8GVRbwoviWT19tFhgdA7DlenLGC/mbc3lBoVb7jxj9Z+eyGqvcnSyIltYUrkKzWqSvg==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.8.tgz#9a4f78c75c051e8c060183ebb39a269ba936a2ac";
-  integrity 
sha512-ASFQhgY4ElXh3nDcOMTkQero4b1lgubskNlhIfJrsH5OKZXDpUAKBlNS0Kx81jwOBp+HCeZqmoJuihTv57/jvQ==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.8.tgz#902c80e1d678047926387230bc037e63e00697d0";
-  integrity 
sha512-d1KfruIeohqAi6SA+gENMuObDbEjn22olAR7egqnkCD9DGBG0wsEARotkLgXDu6c4ncgWTZJtN5vcgxzWRMzcw==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.8.tgz#2d9eb4692add2681ff05a14ce99de54fbed7079c";
-  integrity 
sha512-nVDCkrvx2ua+XQNyfrujIG38+YGyuy2Ru9kKVNyh5jAys6n+l44tTtToqHjino2My8VAY6Lw9H7RI73XFi66Cg==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.8.tgz#89c3b998c6de739db38ab7fb71a8a76b3fa84a45";
-  integrity 
sha512-j8HgrDuSJFAujkivSMSfPQSAa5Fxbvk4rgNAS5i3K+r8s1X0p1uOO2Hl2xNsGFppOeHOLAVgYwDVlmxhq5h+SQ==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.8.tgz#2f01615cf472b0e48c077045cfd96b5c149365cc";
-  integrity 
sha512-1h8MUAwa0VhNCDp6Af0HToI2TJFAn1uqT9Al6DJVzdIBAd21m/G0Yfc77KDM3uF3T/YaOgQq3qTJHPbTOInaIQ==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.8.tgz#a201f720cd2c3ebf9a6033fcc3feb069a54b509a";
-  integrity 
sha512-r2nVa5SIK9tSWd0kJd9HCffnDHKchTGikb//9c7HX+r+wHYCpQrSgxhlY6KWV1nFo1l4KFbsMlHk+L6fekLsUg==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.8.tgz#07046c977985a3334667f19e6ab3a01a80862afb";
-  integrity 
sha512-zUlaP2S12YhQ2UzUfcCuMDHQFJyKABkAjvO5YSndMiIkMimPmxA+BYSBikWgsRpvyxuRnow4nS5NPnf9fpv41w==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.8.tgz#4a5470caf0d16127c05d4833d4934213c69392d1";
-  integrity 
sha512-YEGFFWESlPva8hGL+zvj2z/SaK+pH0SwOM0Nc/d+rVnW7GSTFlLBGzZkuSU9kFIGIo8q9X3ucpZhu8PDN5A2sQ==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.8.tgz#3de3e8470b7b328d99dbc3e9ec1eace207e5bbc4";
-  integrity 
sha512-hiGgGC6KZ5LZz58OL/+qVVoZiuZlUYlYHNAmczOm7bs2oE1XriPFi5ZHHrS8ACpV5EjySrnoCKmcbQMN+ojnHg==
-
-"@esbuild/[email protected]":
-  version "0.25.8"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.8.tgz#610d7ea539d2fcdbe39237b5cc175eb2c4451f9c";
-  integrity 
sha512-cn3Yr7+OaaZq1c+2pe+8yxC8E144SReCQjN6/2ynubzYjvyqZjTXfQJpAcQpsdJq3My7XADANiYGHoFC69pLQw==
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.9.tgz#bef96351f16520055c947aba28802eede3c9e9a9";
+  integrity 
sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.9.tgz#d2e70be7d51a529425422091e0dcb90374c1546c";
+  integrity 
sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.9.tgz#d2a753fe2a4c73b79437d0ba1480e2d760097419";
+  integrity 
sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.9.tgz#5278836e3c7ae75761626962f902a0d55352e683";
+  integrity 
sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.9.tgz#f1513eaf9ec8fa15dcaf4c341b0f005d3e8b47ae";
+  integrity 
sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.9.tgz#e27dbc3b507b3a1cea3b9280a04b8b6b725f82be";
+  integrity 
sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.9.tgz#364e3e5b7a1fd45d92be08c6cc5d890ca75908ca";
+  integrity 
sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.9.tgz#7c869b45faeb3df668e19ace07335a0711ec56ab";
+  integrity 
sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.9.tgz#48d42861758c940b61abea43ba9a29b186d6cb8b";
+  integrity 
sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.9.tgz#6ce4b9cabf148274101701d112b89dc67cc52f37";
+  integrity 
sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.9.tgz#207e54899b79cac9c26c323fc1caa32e3143f1c4";
+  integrity 
sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.9.tgz#0ba48a127159a8f6abb5827f21198b999ffd1fc0";
+  integrity 
sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.9.tgz#a4d4cc693d185f66a6afde94f772b38ce5d64eb5";
+  integrity 
sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.9.tgz#0f5805c1c6d6435a1dafdc043cb07a19050357db";
+  integrity 
sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.9.tgz#6776edece0f8fca79f3386398b5183ff2a827547";
+  integrity 
sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.9.tgz#3f6f29ef036938447c2218d309dc875225861830";
+  integrity 
sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.9.tgz#831fe0b0e1a80a8b8391224ea2377d5520e1527f";
+  integrity 
sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.9.tgz#06f99d7eebe035fbbe43de01c9d7e98d2a0aa548";
+  integrity 
sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.9.tgz#db99858e6bed6e73911f92a88e4edd3a8c429a52";
+  integrity 
sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.9.tgz#afb886c867e36f9d86bb21e878e1185f5d5a0935";
+  integrity 
sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.9.tgz#30855c9f8381fac6a0ef5b5f31ac6e7108a66ecf";
+  integrity 
sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.9.tgz#2f2144af31e67adc2a8e3705c20c2bd97bd88314";
+  integrity 
sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.9.tgz#69b99a9b5bd226c9eb9c6a73f990fddd497d732e";
+  integrity 
sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.9.tgz#d789330a712af916c88325f4ffe465f885719c6b";
+  integrity 
sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.9.tgz#52fc735406bd49688253e74e4e837ac2ba0789e3";
+  integrity 
sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==
+
+"@esbuild/[email protected]":
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.9.tgz#585624dc829cfb6e7c0aa6c3ca7d7e6daa87e34f";
+  integrity 
sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==
 
 "@eslint-community/eslint-utils@^4.2.0", 
"@eslint-community/eslint-utils@^4.5.1", 
"@eslint-community/eslint-utils@^4.7.0":
   version "4.7.0"
@@ -2835,37 +2835,37 @@ [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.8"
-  resolved 
"https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.8.tgz#482d42198b427c9c2f3a81b63d7663aecb1dda07";
-  integrity 
sha512-vVC0USHGtMi8+R4Kz8rt6JhEWLxsv9Rnu/lGYbPR8u47B+DCBksq9JarW0zOO7bs37hyOK1l2/oqtbciutL5+Q==
[email protected]:
+  version "0.25.9"
+  resolved 
"https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.9.tgz#15ab8e39ae6cdc64c24ff8a2c0aef5b3fd9fa976";
+  integrity 
sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==
   optionalDependencies:
-    "@esbuild/aix-ppc64" "0.25.8"
-    "@esbuild/android-arm" "0.25.8"
-    "@esbuild/android-arm64" "0.25.8"
-    "@esbuild/android-x64" "0.25.8"
-    "@esbuild/darwin-arm64" "0.25.8"
-    "@esbuild/darwin-x64" "0.25.8"
-    "@esbuild/freebsd-arm64" "0.25.8"
-    "@esbuild/freebsd-x64" "0.25.8"
-    "@esbuild/linux-arm" "0.25.8"
-    "@esbuild/linux-arm64" "0.25.8"
-    "@esbuild/linux-ia32" "0.25.8"
-    "@esbuild/linux-loong64" "0.25.8"
-    "@esbuild/linux-mips64el" "0.25.8"
-    "@esbuild/linux-ppc64" "0.25.8"
-    "@esbuild/linux-riscv64" "0.25.8"
-    "@esbuild/linux-s390x" "0.25.8"
-    "@esbuild/linux-x64" "0.25.8"
-    "@esbuild/netbsd-arm64" "0.25.8"
-    "@esbuild/netbsd-x64" "0.25.8"
-    "@esbuild/openbsd-arm64" "0.25.8"
-    "@esbuild/openbsd-x64" "0.25.8"
-    "@esbuild/openharmony-arm64" "0.25.8"
-    "@esbuild/sunos-x64" "0.25.8"
-    "@esbuild/win32-arm64" "0.25.8"
-    "@esbuild/win32-ia32" "0.25.8"
-    "@esbuild/win32-x64" "0.25.8"
+    "@esbuild/aix-ppc64" "0.25.9"
+    "@esbuild/android-arm" "0.25.9"
+    "@esbuild/android-arm64" "0.25.9"
+    "@esbuild/android-x64" "0.25.9"
+    "@esbuild/darwin-arm64" "0.25.9"
+    "@esbuild/darwin-x64" "0.25.9"
+    "@esbuild/freebsd-arm64" "0.25.9"
+    "@esbuild/freebsd-x64" "0.25.9"
+    "@esbuild/linux-arm" "0.25.9"
+    "@esbuild/linux-arm64" "0.25.9"
+    "@esbuild/linux-ia32" "0.25.9"
+    "@esbuild/linux-loong64" "0.25.9"
+    "@esbuild/linux-mips64el" "0.25.9"
+    "@esbuild/linux-ppc64" "0.25.9"
+    "@esbuild/linux-riscv64" "0.25.9"
+    "@esbuild/linux-s390x" "0.25.9"
+    "@esbuild/linux-x64" "0.25.9"
+    "@esbuild/netbsd-arm64" "0.25.9"
+    "@esbuild/netbsd-x64" "0.25.9"
+    "@esbuild/openbsd-arm64" "0.25.9"
+    "@esbuild/openbsd-x64" "0.25.9"
+    "@esbuild/openharmony-arm64" "0.25.9"
+    "@esbuild/sunos-x64" "0.25.9"
+    "@esbuild/win32-arm64" "0.25.9"
+    "@esbuild/win32-ia32" "0.25.9"
+    "@esbuild/win32-x64" "0.25.9"
 
 escalade@^3.1.1:
   version "3.1.2"

Reply via email to