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 d4acc92  chore: bump esbuild from 0.25.10 to 0.27.0 (#332)
d4acc92 is described below

commit d4acc926adbdf22772e9a892b94b3f7d8db9c02f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Tue Dec 2 09:25:47 2025 +0900

    chore: bump esbuild from 0.25.10 to 0.27.0 (#332)
    
    Bumps [esbuild](https://github.com/evanw/esbuild) from 0.25.10 to
    0.27.0.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/evanw/esbuild/releases";>esbuild's
    releases</a>.</em></p>
    <blockquote>
    <h2>v0.27.0</h2>
    <p><strong>This release deliberately contains backwards-incompatible
    changes.</strong> To avoid automatically picking up releases like this,
    you should either be pinning the exact version of <code>esbuild</code>
    in your <code>package.json</code> file (recommended) or be using a
    version range syntax that only accepts patch upgrades such as
    <code>^0.26.0</code> or <code>~0.26.0</code>. See npm's documentation
    about <a
    href="https://docs.npmjs.com/cli/v6/using-npm/semver/";>semver</a> for
    more information.</p>
    <ul>
    <li>
    <p>Use <code>Uint8Array.fromBase64</code> if available (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4286";>#4286</a>)</p>
    <p>With this release, esbuild's <code>binary</code> loader will now use
    the new <a
    
href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/fromBase64";><code>Uint8Array.fromBase64</code></a>
    function unless it's unavailable in the configured target environment.
    If it's unavailable, esbuild's previous code for this will be used as a
    fallback. Note that this means you may now need to specify
    <code>target</code> when using this feature with Node (for example
    <code>--target=node22</code>) unless you're using Node v25+.</p>
    </li>
    <li>
    <p>Update the Go compiler from v1.23.12 to v1.25.4 (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4208";>#4208</a>,
    <a
    href="https://redirect.github.com/evanw/esbuild/pull/4311";>#4311</a>)</p>
    <p>This raises the operating system requirements for running
    esbuild:</p>
    <ul>
    <li>Linux: now requires a kernel version of 3.2 or later</li>
    <li>macOS: now requires macOS 12 (Monterey) or later</li>
    </ul>
    </li>
    </ul>
    <h2>v0.26.0</h2>
    <ul>
    <li>
    <p>Enable trusted publishing (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4281";>#4281</a>)</p>
    <p>GitHub and npm are recommending that maintainers for packages such as
    esbuild switch to <a
    href="https://docs.npmjs.com/trusted-publishers";>trusted publishing</a>.
    With this release, a VM on GitHub will now build and publish all of
    esbuild's packages to npm instead of me. In theory.</p>
    <p>Unfortunately there isn't really a way to test that this works other
    than to do it live. So this release is that live test. Hopefully this
    release is uneventful and is exactly the same as the previous one (well,
    except for the green provenance attestation checkmark on npm that
    happens with trusted publishing).</p>
    </li>
    </ul>
    <h2>v0.25.12</h2>
    <ul>
    <li>
    <p>Fix a minification regression with CSS media queries (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4315";>#4315</a>)</p>
    <p>The previous release introduced support for parsing media queries
    which unintentionally introduced a regression with the removal of
    duplicate media rules during minification. Specifically the grammar for
    <code>@media &lt;media-type&gt; and &lt;media-condition-without-or&gt; {
    ... }</code> was missing an equality check for the
    <code>&lt;media-condition-without-or&gt;</code> part, so rules with
    different suffix clauses in this position would incorrectly compare
    equal and be deduplicated. This release fixes the regression.</p>
    </li>
    <li>
    <p>Update the list of known JavaScript globals (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4310";>#4310</a>)</p>
    <p>This release updates esbuild's internal list of known JavaScript
    globals. These are globals that are known to not have side-effects when
    the property is accessed. For example, accessing the global
    <code>Array</code> property is considered to be side-effect free but
    accessing the global <code>scrollY</code> property can trigger a layout,
    which is a side-effect. This is used by esbuild's tree-shaking to safely
    remove unused code that is known to be side-effect free. This update
    adds the following global properties:</p>
    <p>From <a href="https://tc39.es/ecma262/2017/";>ES2017</a>:</p>
    <ul>
    <li><code>Atomics</code></li>
    <li><code>SharedArrayBuffer</code></li>
    </ul>
    <p>From <a href="https://tc39.es/ecma262/2020/";>ES2020</a>:</p>
    <ul>
    <li><code>BigInt64Array</code></li>
    <li><code>BigUint64Array</code></li>
    </ul>
    <p>From <a href="https://tc39.es/ecma262/2021/";>ES2021</a>:</p>
    <ul>
    <li><code>FinalizationRegistry</code></li>
    <li><code>WeakRef</code></li>
    </ul>
    <p>From <a href="https://tc39.es/ecma262/2025/";>ES2025</a>:</p>
    <ul>
    <li><code>Float16Array</code></li>
    <li><code>Iterator</code></li>
    </ul>
    <p>Note that this does not indicate that constructing any of these
    objects is side-effect free, just that accessing the identifier is
    side-effect free. For example, this now allows esbuild to tree-shake
    classes that extend from <code>Iterator</code>:</p>
    <pre lang="js"><code>// This can now be tree-shaken by esbuild:
    </code></pre>
    </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.27.0</h2>
    <p><strong>This release deliberately contains backwards-incompatible
    changes.</strong> To avoid automatically picking up releases like this,
    you should either be pinning the exact version of <code>esbuild</code>
    in your <code>package.json</code> file (recommended) or be using a
    version range syntax that only accepts patch upgrades such as
    <code>^0.26.0</code> or <code>~0.26.0</code>. See npm's documentation
    about <a
    href="https://docs.npmjs.com/cli/v6/using-npm/semver/";>semver</a> for
    more information.</p>
    <ul>
    <li>
    <p>Use <code>Uint8Array.fromBase64</code> if available (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4286";>#4286</a>)</p>
    <p>With this release, esbuild's <code>binary</code> loader will now use
    the new <a
    
href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/fromBase64";><code>Uint8Array.fromBase64</code></a>
    function unless it's unavailable in the configured target environment.
    If it's unavailable, esbuild's previous code for this will be used as a
    fallback. Note that this means you may now need to specify
    <code>target</code> when using this feature with Node (for example
    <code>--target=node22</code>) unless you're using Node v25+.</p>
    </li>
    <li>
    <p>Update the Go compiler from v1.23.12 to v1.25.4 (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4208";>#4208</a>,
    <a
    href="https://redirect.github.com/evanw/esbuild/pull/4311";>#4311</a>)</p>
    <p>This raises the operating system requirements for running
    esbuild:</p>
    <ul>
    <li>Linux: now requires a kernel version of 3.2 or later</li>
    <li>macOS: now requires macOS 12 (Monterey) or later</li>
    </ul>
    </li>
    </ul>
    <h2>0.26.0</h2>
    <ul>
    <li>
    <p>Enable trusted publishing (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4281";>#4281</a>)</p>
    <p>GitHub and npm are recommending that maintainers for packages such as
    esbuild switch to <a
    href="https://docs.npmjs.com/trusted-publishers";>trusted publishing</a>.
    With this release, a VM on GitHub will now build and publish all of
    esbuild's packages to npm instead of me. In theory.</p>
    <p>Unfortunately there isn't really a way to test that this works other
    than to do it live. So this release is that live test. Hopefully this
    release is uneventful and is exactly the same as the previous one (well,
    except for the green provenance attestation checkmark on npm that
    happens with trusted publishing).</p>
    </li>
    </ul>
    <h2>0.25.12</h2>
    <ul>
    <li>
    <p>Fix a minification regression with CSS media queries (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4315";>#4315</a>)</p>
    <p>The previous release introduced support for parsing media queries
    which unintentionally introduced a regression with the removal of
    duplicate media rules during minification. Specifically the grammar for
    <code>@media &lt;media-type&gt; and &lt;media-condition-without-or&gt; {
    ... }</code> was missing an equality check for the
    <code>&lt;media-condition-without-or&gt;</code> part, so rules with
    different suffix clauses in this position would incorrectly compare
    equal and be deduplicated. This release fixes the regression.</p>
    </li>
    <li>
    <p>Update the list of known JavaScript globals (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4310";>#4310</a>)</p>
    <p>This release updates esbuild's internal list of known JavaScript
    globals. These are globals that are known to not have side-effects when
    the property is accessed. For example, accessing the global
    <code>Array</code> property is considered to be side-effect free but
    accessing the global <code>scrollY</code> property can trigger a layout,
    which is a side-effect. This is used by esbuild's tree-shaking to safely
    remove unused code that is known to be side-effect free. This update
    adds the following global properties:</p>
    <p>From <a href="https://tc39.es/ecma262/2017/";>ES2017</a>:</p>
    <ul>
    <li><code>Atomics</code></li>
    <li><code>SharedArrayBuffer</code></li>
    </ul>
    <p>From <a href="https://tc39.es/ecma262/2020/";>ES2020</a>:</p>
    <ul>
    <li><code>BigInt64Array</code></li>
    <li><code>BigUint64Array</code></li>
    </ul>
    <p>From <a href="https://tc39.es/ecma262/2021/";>ES2021</a>:</p>
    <ul>
    <li><code>FinalizationRegistry</code></li>
    <li><code>WeakRef</code></li>
    </ul>
    <p>From <a href="https://tc39.es/ecma262/2025/";>ES2025</a>:</p>
    <ul>
    <li><code>Float16Array</code></li>
    <li><code>Iterator</code></li>
    </ul>
    <p>Note that this does not indicate that constructing any of these
    objects is side-effect free, just that accessing the identifier is
    side-effect free. For example, this now allows esbuild to tree-shake
    classes that extend from <code>Iterator</code>:</p>
    </li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/2b91699b74da07c2cd2361a5e63c1882575e3bf0";><code>2b91699</code></a>
    publish 0.27.0 to npm</li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/22b425c12f59964383df27362294b5f8c034bab3";><code>22b425c</code></a>
    fix <a
    href="https://redirect.github.com/evanw/esbuild/issues/4286";>#4286</a>:
    use <code>Uint8Array.fromBase64</code> if present (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4295";>#4295</a>)</li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/6d187ef4c9277939c1639ef8c036c07ff62dd33f";><code>6d187ef</code></a>
    update go 1.25.3 =&gt; 1.25.4</li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/9d0d4e71a23dce02d18cf91552304333c1b44cd9";><code>9d0d4e7</code></a>
    update go 1.23.12 =&gt; 1.25.3 (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4318";>#4318</a>)</li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/b6979d89ed4b2aed1ab58d206e65c8bd92ac7c60";><code>b6979d8</code></a>
    use a patched go compiler for release builds</li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/893d2b9661a62575041fa371351c422f887cc43d";><code>893d2b9</code></a>
    delete temporary <code>release.yml</code> workflow</li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/cee391852c39146334894795e658e7a9c7bc4cd8";><code>cee3918</code></a>
    add a temporary <code>release.yml</code> workflow</li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/f5bb1d6ed8c86eea24cda1664ab8812d823daeca";><code>f5bb1d6</code></a>
    fix <code>publish.yml</code></li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/17ff82bebfaf78e97457cb504525584e603bf9f4";><code>17ff82b</code></a>
    publish 0.26.0 to npm</li>
    <li><a
    
href="https://github.com/evanw/esbuild/commit/f87181fbf3eb78b6b00cf7b3529d0f6f20cd763c";><code>f87181f</code></a>
    enable trusted publishing (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4319";>#4319</a>)</li>
    <li>Additional commits viewable in <a
    href="https://github.com/evanw/esbuild/compare/v0.25.10...v0.27.0";>compare
    view</a></li>
    </ul>
    </details>
    <details>
    <summary>Maintainer changes</summary>
    <p>This version was pushed to npm by [GitHub Actions](<a
    href="https://www.npmjs.com/~GitHub";>https://www.npmjs.com/~GitHub</a>
    Actions), a new releaser for esbuild since your current version.</p>
    </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.10&new-version=0.27.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    Dependabot will resolve any conflicts with this PR as long as you don't
    alter it yourself. You can also trigger a rebase manually by commenting
    `@dependabot rebase`.
    
    [//]: # (dependabot-automerge-start)
    [//]: # (dependabot-automerge-end)
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    You can trigger Dependabot actions by commenting on this PR:
    - `@dependabot rebase` will rebase this PR
    - `@dependabot recreate` will recreate this PR, overwriting any edits
    that have been made to it
    - `@dependabot merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after
    your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge
    and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating
    it. You can achieve the same result by closing it manually
    - `@dependabot show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@dependabot ignore this major version` will close this PR and stop
    Dependabot creating any more for this major version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop
    Dependabot creating any more for this minor version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop
    Dependabot creating any more for this dependency (unless you reopen the
    PR or upgrade to it yourself)
    
    
    </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 7d9f09b..af4ca82 100644
--- a/package.json
+++ b/package.json
@@ -73,7 +73,7 @@
     "cross-env": "10.0.0",
     "del": "8.0.1",
     "del-cli": "7.0.0",
-    "esbuild": "0.25.10",
+    "esbuild": "0.27.0",
     "esbuild-plugin-alias": "0.2.1",
     "eslint": "9.39.1",
     "eslint-plugin-jest": "29.0.1",
diff --git a/yarn.lock b/yarn.lock
index 85a4d06..e5016a4 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.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz#ee6b7163a13528e099ecf562b972f2bcebe0aa97";
-  integrity 
sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz#115fc76631e82dd06811bfaf2db0d4979c16e2cb";
-  integrity 
sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.10.tgz#8d5811912da77f615398611e5bbc1333fe321aa9";
-  integrity 
sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.10.tgz#e3e96516b2d50d74105bb92594c473e30ddc16b1";
-  integrity 
sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz#6af6bb1d05887dac515de1b162b59dc71212ed76";
-  integrity 
sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz#99ae82347fbd336fc2d28ffd4f05694e6e5b723d";
-  integrity 
sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz#0c6d5558a6322b0bdb17f7025c19bd7d2359437d";
-  integrity 
sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz#8c35873fab8c0857a75300a3dcce4324ca0b9844";
-  integrity 
sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz#3edc2f87b889a15b4cedaf65f498c2bed7b16b90";
-  integrity 
sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz#86501cfdfb3d110176d80c41b27ed4611471cde7";
-  integrity 
sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz#e6589877876142537c6864680cd5d26a622b9d97";
-  integrity 
sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz#11119e18781f136d8083ea10eb6be73db7532de8";
-  integrity 
sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz#3052f5436b0c0c67a25658d5fc87f045e7def9e6";
-  integrity 
sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz#2f098920ee5be2ce799f35e367b28709925a8744";
-  integrity 
sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz#fa51d7fd0a22a62b51b4b94b405a3198cf7405dd";
-  integrity 
sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz#a27642e36fc282748fdb38954bd3ef4f85791e8a";
-  integrity 
sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz#9d9b09c0033d17529570ced6d813f98315dfe4e9";
-  integrity 
sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz#25c09a659c97e8af19e3f2afd1c9190435802151";
-  integrity 
sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz#7fa5f6ffc19be3a0f6f5fd32c90df3dc2506937a";
-  integrity 
sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz#8faa6aa1afca0c6d024398321d6cb1c18e72a1c3";
-  integrity 
sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz#a42979b016f29559a8453d32440d3c8cd420af5e";
-  integrity 
sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz#fd87bfeadd7eeb3aa384bbba907459ffa3197cb1";
-  integrity 
sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz#3a18f590e36cb78ae7397976b760b2b8c74407f4";
-  integrity 
sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz#e71741a251e3fd971408827a529d2325551f530c";
-  integrity 
sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz#c6f010b5d3b943d8901a0c87ea55f93b8b54bf94";
-  integrity 
sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==
-
-"@esbuild/[email protected]":
-  version "0.25.10"
-  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz#e4b3e255a1b4aea84f6e1d2ae0b73f826c3785bd";
-  integrity 
sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.27.0.tgz#1d8be43489a961615d49e037f1bfa0f52a773737";
+  integrity 
sha512-KuZrd2hRjz01y5JK9mEBSD3Vj3mbCvemhT466rSuJYeE/hjuBrHfjjcjMdTm/sz7au+++sdbJZJmuBwQLuw68A==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.27.0.tgz#bd1763194aad60753fa3338b1ba9bda974b58724";
+  integrity 
sha512-CC3vt4+1xZrs97/PKDkl0yN7w8edvU2vZvAFGD16n9F0Cvniy5qvzRXjfO1l94efczkkQE6g1x0i73Qf5uthOQ==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.27.0.tgz#69c7b57f02d3b3618a5ba4f82d127b57665dc397";
+  integrity 
sha512-j67aezrPNYWJEOHUNLPj9maeJte7uSMM6gMoxfPC9hOg8N02JuQi/T7ewumf4tNvJadFkvLZMlAq73b9uwdMyQ==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.27.0.tgz#6ea22b5843acb23243d0126c052d7d3b6a11ca90";
+  integrity 
sha512-wurMkF1nmQajBO1+0CJmcN17U4BP6GqNSROP8t0X/Jiw2ltYGLHpEksp9MpoBqkrFR3kv2/te6Sha26k3+yZ9Q==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.27.0.tgz#5ad7c02bc1b1a937a420f919afe40665ba14ad1e";
+  integrity 
sha512-uJOQKYCcHhg07DL7i8MzjvS2LaP7W7Pn/7uA0B5S1EnqAirJtbyw4yC5jQ5qcFjHK9l6o/MX9QisBg12kNkdHg==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.27.0.tgz#48470c83c5fd6d1fc7c823c2c603aeee96e101c9";
+  integrity 
sha512-8mG6arH3yB/4ZXiEnXof5MK72dE6zM9cDvUcPtxhUZsDjESl9JipZYW60C3JGreKCEP+p8P/72r69m4AZGJd5g==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.0.tgz#d5a8effd8b0be7be613cd1009da34d629d4c2457";
+  integrity 
sha512-9FHtyO988CwNMMOE3YIeci+UV+x5Zy8fI2qHNpsEtSF83YPBmE8UWmfYAQg6Ux7Gsmd4FejZqnEUZCMGaNQHQw==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.27.0.tgz#9bde638bda31aa244d6d64dbafafb41e6e799bcc";
+  integrity 
sha512-zCMeMXI4HS/tXvJz8vWGexpZj2YVtRAihHLk1imZj4efx1BQzN76YFeKqlDr3bUWI26wHwLWPd3rwh6pe4EV7g==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.27.0.tgz#96008c3a207d8ca495708db714c475ea5bf7e2af";
+  integrity 
sha512-AS18v0V+vZiLJyi/4LphvBE+OIX682Pu7ZYNsdUHyUKSoRwdnOsMf6FDekwoAFKej14WAkOef3zAORJgAtXnlQ==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.27.0.tgz#9b47cb0f222e567af316e978c7f35307db97bc0e";
+  integrity 
sha512-t76XLQDpxgmq2cNXKTVEB7O7YMb42atj2Re2Haf45HkaUpjM2J0UuJZDuaGbPbamzZ7bawyGFUkodL+zcE+jvQ==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.27.0.tgz#d1e1e38d406cbdfb8a49f4eca0c25bbc344e18cc";
+  integrity 
sha512-Mz1jxqm/kfgKkc/KLHC5qIujMvnnarD9ra1cEcrs7qshTUSksPihGrWHVG5+osAIQ68577Zpww7SGapmzSt4Nw==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.27.0.tgz#c13bc6a53e3b69b76f248065bebee8415b44dfce";
+  integrity 
sha512-QbEREjdJeIreIAbdG2hLU1yXm1uu+LTdzoq1KCo4G4pFOLlvIspBm36QrQOar9LFduavoWX2msNFAAAY9j4BDg==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.27.0.tgz#05f8322eb0a96ce1bfbc59691abe788f71e2d217";
+  integrity 
sha512-sJz3zRNe4tO2wxvDpH/HYJilb6+2YJxo/ZNbVdtFiKDufzWq4JmKAiHy9iGoLjAV7r/W32VgaHGkk35cUXlNOg==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.27.0.tgz#6fc5e7af98b4fb0c6a7f0b73ba837ce44dc54980";
+  integrity 
sha512-z9N10FBD0DCS2dmSABDBb5TLAyF1/ydVb+N4pi88T45efQ/w4ohr/F/QYCkxDPnkhkp6AIpIcQKQ8F0ANoA2JA==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.27.0.tgz#508afa9f69a3f97368c0bf07dd894a04af39d86e";
+  integrity 
sha512-pQdyAIZ0BWIC5GyvVFn5awDiO14TkT/19FTmFcPdDec94KJ1uZcmFs21Fo8auMXzD4Tt+diXu1LW1gHus9fhFQ==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.27.0.tgz#21fda656110ee242fc64f87a9e0b0276d4e4ec5b";
+  integrity 
sha512-hPlRWR4eIDDEci953RI1BLZitgi5uqcsjKMxwYfmi4LcwyWo2IcRP+lThVnKjNtk90pLS8nKdroXYOqW+QQH+w==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.27.0.tgz#1758a85dcc09b387fd57621643e77b25e0ccba59";
+  integrity 
sha512-1hBWx4OUJE2cab++aVZ7pObD6s+DK4mPGpemtnAORBvb5l/g5xFGk0vc0PjSkrDs0XaXj9yyob3d14XqvnQ4gw==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.0.tgz#a0131159f4db6e490da35cc4bb51ef0d03b7848a";
+  integrity 
sha512-6m0sfQfxfQfy1qRuecMkJlf1cIzTOgyaeXaiVaaki8/v+WB+U4hc6ik15ZW6TAllRlg/WuQXxWj1jx6C+dfy3w==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.27.0.tgz#6f4877d7c2ba425a2b80e4330594e0b43caa2d7d";
+  integrity 
sha512-xbbOdfn06FtcJ9d0ShxxvSn2iUsGd/lgPIO2V3VZIPDbEaIj1/3nBBe1AwuEZKXVXkMmpr6LUAgMkLD/4D2PPA==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.0.tgz#cbefbd4c2f375cebeb4f965945be6cf81331bd01";
+  integrity 
sha512-fWgqR8uNbCQ/GGv0yhzttj6sU/9Z5/Sv/VGU3F5OuXK6J6SlriONKrQ7tNlwBrJZXRYk5jUhuWvF7GYzGguBZQ==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.27.0.tgz#31fa9e8649fc750d7c2302c8b9d0e1547f57bc84";
+  integrity 
sha512-aCwlRdSNMNxkGGqQajMUza6uXzR/U0dIl1QmLjPtRbLOx3Gy3otfFu/VjATy4yQzo9yFDGTxYDo1FfAD9oRD2A==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.0.tgz#03727780f1fdf606e7b56193693a715d9f1ee001";
+  integrity 
sha512-nyvsBccxNAsNYz2jVFYwEGuRRomqZ149A39SHWk4hV0jWxKM0hjBPm3AmdxcbHiFLbBSwG6SbpIcUbXjgyECfA==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.27.0.tgz#866a35f387234a867ced35af8906dfffb073b9ff";
+  integrity 
sha512-Q1KY1iJafM+UX6CFEL+F4HRTgygmEW568YMqDA5UV97AuZSm21b7SXIrRJDwXWPzr8MGr75fUZPV67FdtMHlHA==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.27.0.tgz#53de43a9629b8a34678f28cd56cc104db1b67abb";
+  integrity 
sha512-W1eyGNi6d+8kOmZIwi/EDjrL9nxQIQ0MiGqe/AWc6+IaHloxHSGoeRgDRKHFISThLmsewZ5nHFvGFWdBYlgKPg==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.27.0.tgz#924d2aed8692fea5d27bfb6500f9b8b9c1a34af4";
+  integrity 
sha512-30z1aKL9h22kQhilnYkORFYt+3wp7yZsHWus+wSKAJR8JtdfI76LJ4SBdMsCopTR3z/ORqVu5L1vtnHZWVj4cQ==
+
+"@esbuild/[email protected]":
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.27.0.tgz#64995295227e001f2940258617c6674efb3ac48d";
+  integrity 
sha512-aIitBcjQeyOhMTImhLZmtxfdOcuNRpwlPNmlFKPcHQYPhEssw75Cl1TSXJXpMkzaua9FUetx/4OQKq7eJul5Cg==
 
 "@eslint-community/eslint-utils@^4.5.1", 
"@eslint-community/eslint-utils@^4.7.0", 
"@eslint-community/eslint-utils@^4.8.0":
   version "4.9.0"
@@ -2855,37 +2855,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.10"
-  resolved 
"https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.10.tgz#37f5aa5cd14500f141be121c01b096ca83ac34a9";
-  integrity 
sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==
[email protected]:
+  version "0.27.0"
+  resolved 
"https://registry.yarnpkg.com/esbuild/-/esbuild-0.27.0.tgz#db983bed6f76981361c92f50cf6a04c66f7b3e1d";
+  integrity 
sha512-jd0f4NHbD6cALCyGElNpGAOtWxSq46l9X/sWB0Nzd5er4Kz2YTm+Vl0qKFT9KUJvD8+fiO8AvoHhFvEatfVixA==
   optionalDependencies:
-    "@esbuild/aix-ppc64" "0.25.10"
-    "@esbuild/android-arm" "0.25.10"
-    "@esbuild/android-arm64" "0.25.10"
-    "@esbuild/android-x64" "0.25.10"
-    "@esbuild/darwin-arm64" "0.25.10"
-    "@esbuild/darwin-x64" "0.25.10"
-    "@esbuild/freebsd-arm64" "0.25.10"
-    "@esbuild/freebsd-x64" "0.25.10"
-    "@esbuild/linux-arm" "0.25.10"
-    "@esbuild/linux-arm64" "0.25.10"
-    "@esbuild/linux-ia32" "0.25.10"
-    "@esbuild/linux-loong64" "0.25.10"
-    "@esbuild/linux-mips64el" "0.25.10"
-    "@esbuild/linux-ppc64" "0.25.10"
-    "@esbuild/linux-riscv64" "0.25.10"
-    "@esbuild/linux-s390x" "0.25.10"
-    "@esbuild/linux-x64" "0.25.10"
-    "@esbuild/netbsd-arm64" "0.25.10"
-    "@esbuild/netbsd-x64" "0.25.10"
-    "@esbuild/openbsd-arm64" "0.25.10"
-    "@esbuild/openbsd-x64" "0.25.10"
-    "@esbuild/openharmony-arm64" "0.25.10"
-    "@esbuild/sunos-x64" "0.25.10"
-    "@esbuild/win32-arm64" "0.25.10"
-    "@esbuild/win32-ia32" "0.25.10"
-    "@esbuild/win32-x64" "0.25.10"
+    "@esbuild/aix-ppc64" "0.27.0"
+    "@esbuild/android-arm" "0.27.0"
+    "@esbuild/android-arm64" "0.27.0"
+    "@esbuild/android-x64" "0.27.0"
+    "@esbuild/darwin-arm64" "0.27.0"
+    "@esbuild/darwin-x64" "0.27.0"
+    "@esbuild/freebsd-arm64" "0.27.0"
+    "@esbuild/freebsd-x64" "0.27.0"
+    "@esbuild/linux-arm" "0.27.0"
+    "@esbuild/linux-arm64" "0.27.0"
+    "@esbuild/linux-ia32" "0.27.0"
+    "@esbuild/linux-loong64" "0.27.0"
+    "@esbuild/linux-mips64el" "0.27.0"
+    "@esbuild/linux-ppc64" "0.27.0"
+    "@esbuild/linux-riscv64" "0.27.0"
+    "@esbuild/linux-s390x" "0.27.0"
+    "@esbuild/linux-x64" "0.27.0"
+    "@esbuild/netbsd-arm64" "0.27.0"
+    "@esbuild/netbsd-x64" "0.27.0"
+    "@esbuild/openbsd-arm64" "0.27.0"
+    "@esbuild/openbsd-x64" "0.27.0"
+    "@esbuild/openharmony-arm64" "0.27.0"
+    "@esbuild/sunos-x64" "0.27.0"
+    "@esbuild/win32-arm64" "0.27.0"
+    "@esbuild/win32-ia32" "0.27.0"
+    "@esbuild/win32-x64" "0.27.0"
 
 escalade@^3.1.1:
   version "3.1.2"


Reply via email to