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.git
The following commit(s) were added to refs/heads/main by this push:
new a7d5217937 MINOR: [JS] Bump esbuild from 0.18.0 to 0.19.0 in /js
(#37081)
a7d5217937 is described below
commit a7d5217937ca8b8be77995910f672c5e61e9d699
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Aug 11 17:35:36 2023 +0900
MINOR: [JS] Bump esbuild from 0.18.0 to 0.19.0 in /js (#37081)
Bumps [esbuild](https://github.com/evanw/esbuild) from 0.18.0 to 0.19.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.19.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.18.0</code> or
<code>~0.18.0</code>. See npm's documentation about <a
href="https://docs.npmjs.com/cli/v6/using-npm/semver/">semver</a> for [...]
<ul>
<li>
<p>Handle import paths containing wildcards (<a
href="https://redirect.github.com/evanw/esbuild/issues/56">#56</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/700">#700</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/875">#875</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/976">#976</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/2221">#2221</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/2515">#2515</a>)</p>
<p>This release introduces wildcards in import paths in two places:</p>
<ul>
<li>
<p><strong>Entry points</strong></p>
<p>You can now pass a string containing glob-style wildcards such as
<code>./src/*.ts</code> as an entry point and esbuild will search the file
system for files that match the pattern. This can be used to easily pass
esbuild all files with a certain extension on the command line in a
cross-platform way. Previously you had to rely on the shell to perform glob
expansion, but that is obviously shell-dependent and didn't work at all on
Windows. Note that to use this feature on the command [...]
<pre lang="sh"><code>esbuild --minify "./src/*.ts" --outdir=out
</code></pre>
<p>Specifically the <code>*</code> character will match any character
except for the <code>/</code> character, and the <code>/**/</code> character
sequence will match a path separator followed by zero or more path elements.
Other wildcard operators found in glob patterns such as <code>?</code> and
<code>[...]</code> are not supported.</p>
</li>
<li>
<p><strong>Run-time import paths</strong></p>
<p>Import paths that are evaluated at run-time can now be bundled in
certain limited situations. The import path expression must be a form of string
concatenation and must start with either <code>./</code> or <code>../</code>.
Each non-string expression in the string concatenation chain becomes a
wildcard. The <code>*</code> wildcard is chosen unless the previous character
is a <code>/</code>, in which case the <code>/**/*</code> character sequence is
used. Some examples:</p>
<pre lang="js"><code>// These two forms are equivalent
const json1 = await import('./data/' + kind + '.json')
const json2 = await import(`./data/${kind}.json`)
</code></pre>
<p>This feature works with <code>require(...)</code> and
<code>import(...)</code> because these can all accept run-time expressions. It
does not work with <code>import</code> and <code>export</code> statements
because these cannot accept run-time expressions. If you want to prevent
esbuild from trying to bundle these imports, you should move the string
concatenation expression outside of the <code>require(...)</code> or
<code>import(...)</code>. For example:</p>
<pre lang="js"><code>// This will be bundled
const json1 = await import('./data/' + kind + '.json')
<p>// This will not be bundled
const path = './data/' + kind + '.json'
const json2 = await import(path)
</code></pre></p>
<p>Note that using this feature means esbuild will potentially do a lot of
file system I/O to find all possible files that might match the pattern. This
is by design, and is not a bug. If this is a concern, I recommend either
avoiding the <code>/**/</code> pattern (e.g. by not putting a <code>/</code>
before a wildcard) or using this feature only in directory subtrees which do
not have many files that don't match the pattern (e.g. making a subdirectory
for your JSON files and explicit [...]
</li>
</ul>
</li>
<li>
<p>Path aliases in <code>tsconfig.json</code> no longer count as packages
(<a href="https://redirect.github.com/evanw/esbuild/issues/2792">#2792</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/3003">#3003</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/3160">#3160</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/3238">#3238</a>)</p>
<p>Setting <code>--packages=external</code> tells esbuild to make all
import paths external when they look like a package path. For example, an
import of <code>./foo/bar</code> is not a package path and won't be external
while an import of <code>foo/bar</code> is a package path and will be external.
However, the <a
href="https://www.typescriptlang.org/tsconfig#paths"><code>paths</code>
field</a> in <code>tsconfig.json</code> allows you to create import paths that
look like package pat [...]
</li>
<li>
<p>Use the <code>local-css</code> loader for <code>.module.css</code> files
by default (<a
href="https://redirect.github.com/evanw/esbuild/issues/20">#20</a>)</p>
<p>With this release the <code>css</code> loader is still used for
<code>.css</code> files except that <code>.module.css</code> files now use the
<code>local-css</code> loader. This is a common convention in the web
development community. If you need <code>.module.css</code> files to use the
<code>css</code> loader instead, then you can override this behavior with
<code>--loader:.module.css=css</code>.</p>
</li>
</ul>
<h2>v0.18.20</h2>
<ul>
<li>Support advanced CSS <code>@ import</code> rules (<a
href="https://redirect.github.com/evanw/esbuild/issues/953">#953</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/3137">#3137</a>)</li>
</ul>
</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.19.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.18.0</code> or
<code>~0.18.0</code>. See npm's documentation about <a
href="https://docs.npmjs.com/cli/v6/using-npm/semver/">semver</a> for [...]
<ul>
<li>
<p>Handle import paths containing wildcards (<a
href="https://redirect.github.com/evanw/esbuild/issues/56">#56</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/700">#700</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/875">#875</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/976">#976</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/2221">#2221</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/2515">#2515</a>)</p>
<p>This release introduces wildcards in import paths in two places:</p>
<ul>
<li>
<p><strong>Entry points</strong></p>
<p>You can now pass a string containing glob-style wildcards such as
<code>./src/*.ts</code> as an entry point and esbuild will search the file
system for files that match the pattern. This can be used to easily pass
esbuild all files with a certain extension on the command line in a
cross-platform way. Previously you had to rely on the shell to perform glob
expansion, but that is obviously shell-dependent and didn't work at all on
Windows. Note that to use this feature on the command [...]
<pre lang="sh"><code>esbuild --minify "./src/*.ts" --outdir=out
</code></pre>
<p>Specifically the <code>*</code> character will match any character
except for the <code>/</code> character, and the <code>/**/</code> character
sequence will match a path separator followed by zero or more path elements.
Other wildcard operators found in glob patterns such as <code>?</code> and
<code>[...]</code> are not supported.</p>
</li>
<li>
<p><strong>Run-time import paths</strong></p>
<p>Import paths that are evaluated at run-time can now be bundled in
certain limited situations. The import path expression must be a form of string
concatenation and must start with either <code>./</code> or <code>../</code>.
Each non-string expression in the string concatenation chain becomes a
wildcard. The <code>*</code> wildcard is chosen unless the previous character
is a <code>/</code>, in which case the <code>/**/*</code> character sequence is
used. Some examples:</p>
<pre lang="js"><code>// These two forms are equivalent
const json1 = await import('./data/' + kind + '.json')
const json2 = await import(`./data/${kind}.json`)
</code></pre>
<p>This feature works with <code>require(...)</code> and
<code>import(...)</code> because these can all accept run-time expressions. It
does not work with <code>import</code> and <code>export</code> statements
because these cannot accept run-time expressions. If you want to prevent
esbuild from trying to bundle these imports, you should move the string
concatenation expression outside of the <code>require(...)</code> or
<code>import(...)</code>. For example:</p>
<pre lang="js"><code>// This will be bundled
const json1 = await import('./data/' + kind + '.json')
<p>// This will not be bundled
const path = './data/' + kind + '.json'
const json2 = await import(path)
</code></pre></p>
<p>Note that using this feature means esbuild will potentially do a lot of
file system I/O to find all possible files that might match the pattern. This
is by design, and is not a bug. If this is a concern, I recommend either
avoiding the <code>/**/</code> pattern (e.g. by not putting a <code>/</code>
before a wildcard) or using this feature only in directory subtrees which do
not have many files that don't match the pattern (e.g. making a subdirectory
for your JSON files and explicit [...]
</li>
</ul>
</li>
<li>
<p>Path aliases in <code>tsconfig.json</code> no longer count as packages
(<a href="https://redirect.github.com/evanw/esbuild/issues/2792">#2792</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/3003">#3003</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/3160">#3160</a>, <a
href="https://redirect.github.com/evanw/esbuild/issues/3238">#3238</a>)</p>
<p>Setting <code>--packages=external</code> tells esbuild to make all
import paths external when they look like a package path. For example, an
import of <code>./foo/bar</code> is not a package path and won't be external
while an import of <code>foo/bar</code> is a package path and will be external.
However, the <a
href="https://www.typescriptlang.org/tsconfig#paths"><code>paths</code>
field</a> in <code>tsconfig.json</code> allows you to create import paths that
look like package pat [...]
</li>
<li>
<p>Use the <code>local-css</code> loader for <code>.module.css</code> files
by default (<a
href="https://redirect.github.com/evanw/esbuild/issues/20">#20</a>)</p>
<p>With this release the <code>css</code> loader is still used for
<code>.css</code> files except that <code>.module.css</code> files now use the
<code>local-css</code> loader. This is a common convention in the web
development community. If you need <code>.module.css</code> files to use the
<code>css</code> loader instead, then you can override this behavior with
<code>--loader:.module.css=css</code>.</p>
</li>
</ul>
<h2>0.18.20</h2>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/evanw/esbuild/commit/c337498cdad8cac87517ec49c923441b2dc67bf2"><code>c337498</code></a>
publish 0.19.0 to npm</li>
<li><a
href="https://github.com/evanw/esbuild/commit/0b79ab2bc1716a4206a61a7bb0bb25357e1ac55d"><code>0b79ab2</code></a>
this is a breaking change release</li>
<li><a
href="https://github.com/evanw/esbuild/commit/cb464592283c63cb25b1707047dcc0f19da64283"><code>cb46459</code></a>
fix <a href="https://redirect.github.com/evanw/esbuild/issues/3003">#3003</a>,
fix <a href="https://redirect.github.com/evanw/esbuild/issues/3238">#3238</a>:
<code>--packages=</code> and <code>tsconfig</code></li>
<li><a
href="https://github.com/evanw/esbuild/commit/727e5ff8bcf0459bcc341c64c9af8f6e0563fa4b"><code>727e5ff</code></a>
css: use <code>local-css</code> for <code>.module.css</code> files (<a
href="https://redirect.github.com/evanw/esbuild/issues/20">#20</a>)</li>
<li><a
href="https://github.com/evanw/esbuild/commit/be9f8e5cd6703da9d9b9e4bea07cfc6e42b5856d"><code>be9f8e5</code></a>
implement glob-style path resolution</li>
<li><a
href="https://github.com/evanw/esbuild/commit/8e14e25f26d00149720484ba340072a714aed772"><code>8e14e25</code></a>
add the <code>__glob</code> runtime helper method</li>
<li><a
href="https://github.com/evanw/esbuild/commit/c067c5eae69fa42e72a551d6f2ea41ef07b37ed9"><code>c067c5e</code></a>
remove an unnecessary argument</li>
<li><a
href="https://github.com/evanw/esbuild/commit/6e05434eeeb9b4b257bafd6d96e0bac08af57f76"><code>6e05434</code></a>
Update README.md</li>
<li><a
href="https://github.com/evanw/esbuild/commit/22f0818cf81024b63752d815c51fe737612b43ec"><code>22f0818</code></a>
publish 0.18.20 to npm</li>
<li><a
href="https://github.com/evanw/esbuild/commit/89b98d923cf8c08ac30eb3e6b3e59eb5a4cab632"><code>89b98d9</code></a>
css: test coverage for some external test cases</li>
<li>Additional commits viewable in <a
href="https://github.com/evanw/esbuild/compare/v0.18.0...v0.19.0">compare
view</a></li>
</ul>
</details>
<br />
[](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>
Authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Sutou Kouhei <[email protected]>
---
js/package.json | 2 +-
js/yarn.lock | 228 ++++++++++++++++++++++++++++----------------------------
2 files changed, 115 insertions(+), 115 deletions(-)
diff --git a/js/package.json b/js/package.json
index b1ab023763..720349e5d1 100644
--- a/js/package.json
+++ b/js/package.json
@@ -79,7 +79,7 @@
"cross-env": "7.0.3",
"del": "7.0.0",
"del-cli": "5.0.0",
- "esbuild": "0.18.0",
+ "esbuild": "0.19.0",
"esbuild-plugin-alias": "0.2.1",
"eslint": "8.42.0",
"eslint-plugin-jest": "27.2.3",
diff --git a/js/yarn.lock b/js/yarn.lock
index 9f8912fab6..99aa2dbf6d 100644
--- a/js/yarn.lock
+++ b/js/yarn.lock
@@ -358,220 +358,220 @@
resolved
"https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz#bafb75234a5d3d1b690e7c2956a599345e84a2fd"
integrity
sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.18.0.tgz#7ae5fb784ad198ca62741b0821a39645d3fab5c3"
- integrity
sha512-nAwRCs5+jxi3gBMVkOqmRvsITB/UtfpvkbMwAwJUIbp66NnPbV2KGCFnjNn7IEqabJQXfBLe/QLdjCGpHU+yEw==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.0.tgz#c5ea635bdbe9b83d1f78a711120814e716439029"
+ integrity
sha512-AzsozJnB+RNaDncBCs3Ys5g3kqhPFUueItfEaCpp89JH2naFNX2mYDIvUgPYMqqjm8hiFoo+jklb3QHZyR3ubw==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.19.tgz#5898f7832c2298bc7d0ab53701c57beb74d78b4d"
integrity
sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.18.0.tgz#8410aa4c5fe16426cf53fd26ad3805c679407f7b"
- integrity
sha512-+uLHSiWK3qOeyDYCf/nuvIgCnQsYjXWNa3TlGYLW1pPG7OYMawllU+VyBgHQPjF2aIUVFpfrvz5aAfxGk/0qNg==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.0.tgz#6eb6e1fbc0dbfafa035aaef8b5ecde25b539fcf9"
+ integrity
sha512-GAkjUyHgWTYuex3evPd5V7uV/XS4LMKr1PWHRPW1xNyy/Jx08x3uTrDFRefBYLKT/KpaWM8/YMQcwbp5a3yIDA==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.19.tgz#658368ef92067866d95fb268719f98f363d13ae1"
integrity
sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.18.0.tgz#f6be1abb59ee824c2d4c40a46c2e993704d00eda"
- integrity
sha512-TiOJmHQ8bXCGlYLpBd3Qy7N8dxi4n6q+nOmTzPr5Hb/bUr+PKuP4e5lWaOlpkaKc1Q9wsFt+sHfQpFCrM7SMow==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.0.tgz#99f154f71f5b92e778468bcf0f425d166c17bf20"
+ integrity
sha512-SUG8/qiVhljBDpdkHQ9DvOWbp7hFFIP0OzxOTptbmVsgBgzY6JWowmMd6yJuOhapfxmj/DrvwKmjRLvVSIAKZg==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz#584c34c5991b95d4d48d333300b1a4e2ff7be276"
integrity
sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.0.tgz#6306ada50ed59d5f83cceb096f59c2c750a62f6f"
- integrity
sha512-5GsFovtGyjMIXJrcCzmI1hX3TneCrmFncFIlo0WrRvWcVU6H094P854ZaP8qoLgevXhggO2dhlEGYY0Zv6/S9Q==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.0.tgz#2fcc11abf95fbabbf9167db6a11d899385bd777b"
+ integrity
sha512-HkxZ8k3Jvcw0FORPNTavA8BMgQjLOB6AajT+iXmil7BwY3gU1hWvJJAyWyEogCmA4LdbGvKF8vEykdmJ4xNJJQ==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz#7751d236dfe6ce136cce343dce69f52d76b7f6cb"
integrity
sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.18.0.tgz#e9392250ed9701c659914321a9b180efe233af99"
- integrity
sha512-4K/QCksQ8F58rvC1D62Xi4q4E7YWpiyc3zy2H/n1W7y0hjQpOBBxciLn0qycMskP/m/I5h9HNbRlu1aK821sHg==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.0.tgz#b5bbde35468db093fdf994880b0eb4b62613b67c"
+ integrity
sha512-9IRWJjqpWFHM9a5Qs3r3bK834NCFuDY5ZaLrmTjqE+10B6w65UMQzeZjh794JcxpHolsAHqwsN/33crUXNCM2Q==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz#cacd171665dd1d500f45c167d50c6b7e539d5fd2"
integrity
sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.0.tgz#61396db6c6beb74c71088513b733374dac45b766"
- integrity
sha512-DMazN0UGzipD0Fi1O9pRX0xfp+JC3gSnFWxTWq88Dr/odWhZzm8Jqy44LN2veYeipb1fBMxhoEp7eCr902SWqg==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.0.tgz#3f64c76dc590f79cc40acef6b22dd5eb89fc2125"
+ integrity
sha512-s7i2WcXcK0V1PJHVBe7NsGddsL62a9Vhpz2U7zapPrwKoFuxPP9jybwX8SXnropR/AOj3ppt2ern4ItblU6UQQ==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz#0769456eee2a08b8d925d7c00b79e861cb3162e4"
integrity
sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.0.tgz#c6a1bd133747de0c687abb137e17a197a2cced03"
- integrity
sha512-GdkJAB3ZBiYnie9iFO9v/CM4ko0dm5SYkUs97lBKNLHw9mo4H9IXwGNKtUztisEsmUP0IWfEi4YTWOJF3DIO4w==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.0.tgz#14d497e9e858fba2bb9b16130602b7f5944bc09c"
+ integrity
sha512-NMdBSSdgwHCqCsucU5k1xflIIRU0qi1QZnM6+vdGy5fvxm1c8rKh50VzsWsIVTFUG3l91AtRxVwoz3Lcvy3I5w==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz#38e162ecb723862c6be1c27d6389f48960b68edb"
integrity
sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.18.0.tgz#ba924b98ed00ab25567e932897b35ead1b3bc525"
- integrity
sha512-Mb3yCN9PXA6G5qf84UF0IEuXP22eyNlquF17Zs2F1vVBM0CtyWLYosC5JaxBxfK6EzWwB2IkPBIjMeK3ek+ItA==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.0.tgz#0f2f4d8889f7dc89681c306d7312aa76445a5f65"
+ integrity
sha512-I4zvE2srSZxRPapFnNqj+NL3sDJ1wkvEZqt903OZUlBBgigrQMvzUowvP/TTTu2OGYe1oweg5MFilfyrElIFag==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz#1a2cd399c50040184a805174a6d89097d9d1559a"
integrity
sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.18.0.tgz#56aadc2369324c1a70505d296d5037576a0ad026"
- integrity
sha512-A3Ue/oZdb43znNpeY71FrAjZF20MtnBKCGb1vXLIVg5qg8rRM1gRgn6X2ixYwATiw5dE04JnP+aV4OBf8c5ZvQ==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.0.tgz#0b0f79dc72884f0ad02c0aabfc969a0bee7f6775"
+ integrity
sha512-2F1+lH7ZBcCcgxiSs8EXQV0PPJJdTNiNcXxDb61vzxTRJJkXX1I/ye9mAhfHyScXzHaEibEXg1Jq9SW586zz7w==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz#e28c25266b036ce1cabca3c30155222841dc035a"
integrity
sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.18.0.tgz#cce1e382b91802a048b9ddf7c7b96fee0fac4a20"
- integrity
sha512-WNDXgJdfDhN6ZxHU7HgR2BRDVx9iGN8SpmebUUGdENg4MZJndGcaQuf2kCJjMwoK0+es1g61TeJzAMxfgDcmcA==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.0.tgz#dfcece1f5e74d0e7db090475e48b28d9aa270687"
+ integrity
sha512-dz2Q7+P92r1Evc8kEN+cQnB3qqPjmCrOZ+EdBTn8lEc1yN8WDgaDORQQiX+mxaijbH8npXBT9GxUqE52Gt6Y+g==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz#0f887b8bb3f90658d1a0117283e55dbd4c9dcf72"
integrity
sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.18.0.tgz#96680acd30221d519be75a65087a8fb801efe6cc"
- integrity
sha512-PBr8Lf+L8amvheTGFVNK/0qionszkOKMq2WyfFlVz8D41v0+uSth6fYYHwtASkMk4xf+oh0vW8NYuav3/3RHuQ==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.0.tgz#710f5bd55db3f5d9ebac8773ea49795261a35ca7"
+ integrity
sha512-IcVJovJVflih4oFahhUw+N7YgNbuMSVFNr38awb0LNzfaiIfdqIh518nOfYaNQU3aVfiJnOIRVJDSAP4k35WxA==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz#f5d2a0b8047ea9a5d9f592a178ea054053a70289"
integrity
sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.0.tgz#a1e040a758d80dce29368702e6d431a64f9e9ba0"
- integrity
sha512-Lg4ygah5bwfDDCOMFsBJjSVbD1UzNwWt4f7DhpaSIFOrJqoECX1VTByKw3iSDAVRlwl1cljlfy7wlysrRZcdiQ==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.0.tgz#a918b310f9bf31fced3853ca52fee6e7acc09824"
+ integrity
sha512-bZGRAGySMquWsKw0gIdsClwfvgbsSq/7oq5KVu1H1r9Il+WzOcfkV1hguntIuBjRVL8agI95i4AukjdAV2YpUw==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz#876590e3acbd9fa7f57a2c7d86f83717dbbac8c7"
integrity
sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.0.tgz#5640cbe44466e443cab764b2509325955adf5ce7"
- integrity
sha512-obz/firdtou244DIjHzdKmJChwGseqA3tWGa6xPMfuq54Ca4Pp1a4ANMrqy2IZ67rfpRHcJTlb2h3rSfW6tvAA==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.0.tgz#104771ef6ce2719ac17031f6b9ed8aa98f8e5faf"
+ integrity
sha512-3LC6H5/gCDorxoRBUdpLV/m7UthYSdar0XcCu+ypycQxMS08MabZ06y1D1yZlDzL/BvOYliRNRWVG/YJJvQdbg==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz#7f49373df463cd9f41dc34f9b2262d771688bf09"
integrity
sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.0.tgz#a90b6235f268d23e7cb6d7f25a3bc8cc5fd51519"
- integrity
sha512-UkuBdxQsxi39wWrRLMOkJl//82/hpQw79TD+OBLw3IBYyVQ4Wfvpe56RfEGK/j439sIm79ccnD5RUNQceHvZdQ==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.0.tgz#83beafa472ad4224adcd4d7469e3a17ba1fbd976"
+ integrity
sha512-jfvdKjWk+Cp2sgLtEEdSHXO7qckrw2B2eFBaoRdmfhThqZs29GMMg7q/LsQpybA7BxCLLEs4di5ucsWzZC5XPA==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz#e2afd1afcaf63afe2c7d9ceacd28ec57c77f8829"
integrity
sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.18.0.tgz#aba0c4e869d709ed564298811434851b9ec8bc33"
- integrity
sha512-MgyuC30oYB465hyAqsb3EH6Y4zTeqqgixRAOpsDNMCelyDiW9ZDPXvMPfBgCZGJlDZFGKDm2I9ou8E3VI+v7pg==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.0.tgz#edc26cb41d8745716bda9c26bac1f0001eaad029"
+ integrity
sha512-ofcucfNLkoXmcnJaw9ugdEOf40AWKGt09WBFCkpor+vFJVvmk/8OPjl/qRtks2Z7BuZbG3ztJuK1zS9z5Cgx9A==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz#8a0e9738b1635f0c53389e515ae83826dec22aa4"
integrity
sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.18.0.tgz#8e3623c0d650af6eb84d27b7818b8334596cf2d7"
- integrity
sha512-oLLKU3F4pKWAsNmfi7Rd4qkj0qvg1S923ZjlcISA2IMgHsODA9xzwerqWayI5nOhLGgKXviDofn9exTeA4EUQQ==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.0.tgz#80a6b5e55ad454e0c0af5bdb267335287e331007"
+ integrity
sha512-Fpf7zNDBti3xrQKQKLdXT0hTyOxgFdRJIMtNy8x1az9ATR9/GJ1brYbB/GLWoXhKiHsoWs+2DLkFVNNMTCLEwA==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz#c29fb2453c6b7ddef9a35e2c18b37bda1ae5c462"
integrity
sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.0.tgz#a9c72773bf301467e74a05c16251780d2fec4ef3"
- integrity
sha512-BEfJrZsZ/gMtpS2vC+2YoFGxmfLKiYQvj8lZrBfjKzQrwyMpH53CzQJj9ypOx9ldjM/MVxf9i9wi/rS4BWV7WA==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.0.tgz#2e6e8d869b58aea34bab9c0c47f15ae1bda29a90"
+ integrity
sha512-AMQAp/5oENgDOvVhvOlbhVe1pWii7oFAMRHlmTjSEMcpjTpIHtFXhv9uAFgUERHm3eYtNvS9Vf+gT55cwuI6Aw==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz#95e75a391403cb10297280d524d66ce04c920691"
integrity
sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.0.tgz#3aae07b2854f73d9b1a413ffb03f72af63612393"
- integrity
sha512-eDolHeG3REnEIgwl7Lw2S0znUMY4PFVtCAzLKqdRO0HD+iPKJR8n2MEJJyhPdUjcobo8SEQ2AG6gtYfft9VFHg==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.0.tgz#ca0817d3ab332afb0d8d96a2eb42b4d8ebaa8715"
+ integrity
sha512-fDztEve1QUs3h/Dw2AUmBlWGkNQbhDoD05ppm5jKvzQv+HVuV13so7m5RYeiSMIC2XQy7PAjZh+afkxAnCRZxA==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz#722eaf057b83c2575937d3ffe5aeb16540da7273"
integrity
sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.18.0.tgz#1f3ff9aaf941b13cfabbc93f3e213a8d38a0c50f"
- integrity
sha512-kl7vONem2wmRQke015rSrknmc6TYXKVNs2quiVTdvkSufscrjegpNqKyP7v6EHqXtvkzrB92ySjpfzazKG627g==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.0.tgz#8de27de2563cb3eb6c1af066b6d7fcb1229fe3d4"
+ integrity
sha512-bKZzJ2/rvUjDzA5Ddyva2tMk89WzNJEibZEaq+wY6SiqPlwgFbqyQLimouxLHiHh1itb5P3SNCIF1bc2bw5H9w==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz#9aa9dc074399288bdcdd283443e9aeb6b9552b6f"
integrity
sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.18.0.tgz#fa32bfa8e716d3fd7d56ee8db831dc73f9fa53f5"
- integrity
sha512-WohArFQ3HStBu9MAsx3JUk2wfC2v8QoadnMoNfx3Y26ac54tD/wQhPzw4QOzQbSqOFqzIMLKWbxindTsko+9OA==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.0.tgz#67c2b410ff8862be2cd61145ad21e11be00fb914"
+ integrity
sha512-NQJ+4jmnA79saI+sE+QzcEls19uZkoEmdxo7r//PDOjIpX8pmoWtTnWg6XcbnO7o4fieyAwb5U2LvgWynF4diA==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz#95ad43c62ad62485e210f6299c7b2571e48d2b03"
integrity
sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.18.0.tgz#8b73a47dff29a2fc5f80ab3672ee232afab1ded8"
- integrity
sha512-SdnpSOxpeoewYCurmfLVepLuhOAphWkGTxWHifFjp37DaUHwF1fpGzyxhZoXMt5MKGuAO5aE3c5668YYtno+9Q==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.0.tgz#cac8992219c6d943bb22226e4afeb3774a29cca1"
+ integrity
sha512-uyxiZAnsfu9diHm9/rIH2soecF/HWLXYUhJKW4q1+/LLmNQ+55lRjvSUDhUmsgJtSUscRJB/3S4RNiTb9o9mCg==
"@esbuild/[email protected]":
version "0.17.19"
resolved
"https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz#8cfaf2ff603e9aabb910e9c0558c26cf32744061"
integrity
sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==
-"@esbuild/[email protected]":
- version "0.18.0"
- resolved
"https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.18.0.tgz#0303dbc50da2f5f6f86e1847b7db9c6eca497881"
- integrity
sha512-WJxImv0Pehpbo+pgg7Xrn88/b6ZzSweNHTw/2LW95JjeQUIS6ToJeQmjAdud9H3yiHJmhLOmEAOvUdNLhptD0w==
+"@esbuild/[email protected]":
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.0.tgz#fa5f12c96811cec3233a53bdbf61d1a05ba9018f"
+ integrity
sha512-jl+NXUjK2StMgqnZnqgNjZuerFG8zQqWXMBZdMMv4W/aO1ZKQaYWZBxTrtWKphkCBVEMh0wMVfGgOd2BjOZqUQ==
"@eslint-community/eslint-utils@^4.2.0",
"@eslint-community/eslint-utils@^4.4.0":
version "4.4.0"
@@ -3503,33 +3503,33 @@ [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.18.0"
- resolved
"https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.0.tgz#fac21a2995733e72d3dc0fda1658c79a80f2c113"
- integrity
sha512-/2sQaWHNX2jkglLu85EjmEAR2ANpKOa1kp2rAE3wjKcuYjEHFlB+D60tn6W9BRgHiAQEKYtl4hEygKWothfDEA==
[email protected]:
+ version "0.19.0"
+ resolved
"https://registry.yarnpkg.com/esbuild/-/esbuild-0.19.0.tgz#f187e4ce3bcc7396d13f408a991655efeba65282"
+ integrity
sha512-i7i8TP4vuG55bKeLyqqk5sTPu1ZjPH3wkcLvAj/0X/222iWFo3AJUYRKjbOoY6BWFMH3teizxHEdV9Su5ESl0w==
optionalDependencies:
- "@esbuild/android-arm" "0.18.0"
- "@esbuild/android-arm64" "0.18.0"
- "@esbuild/android-x64" "0.18.0"
- "@esbuild/darwin-arm64" "0.18.0"
- "@esbuild/darwin-x64" "0.18.0"
- "@esbuild/freebsd-arm64" "0.18.0"
- "@esbuild/freebsd-x64" "0.18.0"
- "@esbuild/linux-arm" "0.18.0"
- "@esbuild/linux-arm64" "0.18.0"
- "@esbuild/linux-ia32" "0.18.0"
- "@esbuild/linux-loong64" "0.18.0"
- "@esbuild/linux-mips64el" "0.18.0"
- "@esbuild/linux-ppc64" "0.18.0"
- "@esbuild/linux-riscv64" "0.18.0"
- "@esbuild/linux-s390x" "0.18.0"
- "@esbuild/linux-x64" "0.18.0"
- "@esbuild/netbsd-x64" "0.18.0"
- "@esbuild/openbsd-x64" "0.18.0"
- "@esbuild/sunos-x64" "0.18.0"
- "@esbuild/win32-arm64" "0.18.0"
- "@esbuild/win32-ia32" "0.18.0"
- "@esbuild/win32-x64" "0.18.0"
+ "@esbuild/android-arm" "0.19.0"
+ "@esbuild/android-arm64" "0.19.0"
+ "@esbuild/android-x64" "0.19.0"
+ "@esbuild/darwin-arm64" "0.19.0"
+ "@esbuild/darwin-x64" "0.19.0"
+ "@esbuild/freebsd-arm64" "0.19.0"
+ "@esbuild/freebsd-x64" "0.19.0"
+ "@esbuild/linux-arm" "0.19.0"
+ "@esbuild/linux-arm64" "0.19.0"
+ "@esbuild/linux-ia32" "0.19.0"
+ "@esbuild/linux-loong64" "0.19.0"
+ "@esbuild/linux-mips64el" "0.19.0"
+ "@esbuild/linux-ppc64" "0.19.0"
+ "@esbuild/linux-riscv64" "0.19.0"
+ "@esbuild/linux-s390x" "0.19.0"
+ "@esbuild/linux-x64" "0.19.0"
+ "@esbuild/netbsd-x64" "0.19.0"
+ "@esbuild/openbsd-x64" "0.19.0"
+ "@esbuild/sunos-x64" "0.19.0"
+ "@esbuild/win32-arm64" "0.19.0"
+ "@esbuild/win32-ia32" "0.19.0"
+ "@esbuild/win32-x64" "0.19.0"
esbuild@^0.17.11:
version "0.17.19"