Skip to content

Commit

Permalink
build(deps): Bump esbuild from 0.19.5 to 0.19.7 (#1219)
Browse files Browse the repository at this point in the history
Bumps [esbuild](https://github.com/evanw/esbuild) from 0.19.5 to 0.19.7.
<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.7</h2>
<ul>
<li>
<p>Add support for bundling code that uses import attributes (<a
href="https://redirect.github.com/evanw/esbuild/issues/3384">#3384</a>)</p>
<p>JavaScript is gaining new syntax for associating a map of string
key-value pairs with individual ESM imports. The proposal is still a
work in progress and is still undergoing significant changes before
being finalized. However, the first iteration has already been shipping
in Chromium-based browsers for a while, and the second iteration has
landed in V8 and is now shipping in node, so it makes sense for esbuild
to support it. Here are the two major iterations of this proposal (so
far):</p>
<ol>
<li>
<p>Import assertions (deprecated, will not be standardized)</p>
<ul>
<li>Uses the <code>assert</code> keyword</li>
<li>Does <em>not</em> affect module resolution</li>
<li>Causes an error if the assertion fails</li>
<li>Shipping in Chrome 91+ (and in esbuild 0.11.22+)</li>
</ul>
</li>
<li>
<p>Import attributes (currently set to become standardized)</p>
<ul>
<li>Uses the <code>with</code> keyword</li>
<li>Affects module resolution</li>
<li>Unknown attributes cause an error</li>
<li>Shipping in node 21+</li>
</ul>
</li>
</ol>
<p>You can already use esbuild to bundle code that uses import
assertions (the first iteration). However, this feature is mostly
useless for bundlers because import assertions are not allowed to affect
module resolution. It's basically only useful as an annotation on
external imports, which esbuild will then preserve in the output for use
in a browser (which would otherwise refuse to load certain imports).</p>
<p>With this release, esbuild now supports bundling code that uses
import attributes (the second iteration). This is much more useful for
bundlers because they are allowed to affect module resolution, which
means the key-value pairs can be provided to plugins. Here's an example,
which uses esbuild's built-in support for the upcoming <a
href="https://github.com/tc39/proposal-json-modules">JSON module
standard</a>:</p>
<pre lang="js"><code>// On static imports
import foo from './package.json' with { type: 'json' }
console.log(foo)
<p>// On dynamic imports
const bar = await import('./package.json', { with: { type: 'json' } })
console.log(bar)
</code></pre></p>
<p>One important consequence of the change in semantics between import
assertions and import attributes is that two imports with identical
paths but different import attributes are now considered to be different
modules. This is because the import attributes are provided to the
loader, which might then use those attributes during loading. For
example, you could imagine an image loader that produces an image of a
different size depending on the import attributes.</p>
<p>Import attributes are now reported in the <a
href="https://esbuild.github.io/api/#metafile">metafile</a> and are now
provided to <a href="https://esbuild.github.io/plugins/#on-load">on-load
plugins</a> as a map in the <code>with</code> property. For example,
here's an esbuild plugin that turns all imports with a <code>type</code>
import attribute equal to <code>'cheese'</code> into a module that
exports the cheese emoji:</p>
<pre lang="js"><code>const cheesePlugin = {
  name: 'cheese',
  setup(build) {
    build.onLoad({ filter: /.*/ }, args =&gt; {
      if (args.with.type === 'cheese') return {
        contents: `export default &quot;🧀&quot;`,
      }
    })
  }
}
<p>require('esbuild').build({
bundle: true,
write: false,
</code></pre></p>
</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.19.7</h2>
<ul>
<li>
<p>Add support for bundling code that uses import attributes (<a
href="https://redirect.github.com/evanw/esbuild/issues/3384">#3384</a>)</p>
<p>JavaScript is gaining new syntax for associating a map of string
key-value pairs with individual ESM imports. The proposal is still a
work in progress and is still undergoing significant changes before
being finalized. However, the first iteration has already been shipping
in Chromium-based browsers for a while, and the second iteration has
landed in V8 and is now shipping in node, so it makes sense for esbuild
to support it. Here are the two major iterations of this proposal (so
far):</p>
<ol>
<li>
<p>Import assertions (deprecated, will not be standardized)</p>
<ul>
<li>Uses the <code>assert</code> keyword</li>
<li>Does <em>not</em> affect module resolution</li>
<li>Causes an error if the assertion fails</li>
<li>Shipping in Chrome 91+ (and in esbuild 0.11.22+)</li>
</ul>
</li>
<li>
<p>Import attributes (currently set to become standardized)</p>
<ul>
<li>Uses the <code>with</code> keyword</li>
<li>Affects module resolution</li>
<li>Unknown attributes cause an error</li>
<li>Shipping in node 21+</li>
</ul>
</li>
</ol>
<p>You can already use esbuild to bundle code that uses import
assertions (the first iteration). However, this feature is mostly
useless for bundlers because import assertions are not allowed to affect
module resolution. It's basically only useful as an annotation on
external imports, which esbuild will then preserve in the output for use
in a browser (which would otherwise refuse to load certain imports).</p>
<p>With this release, esbuild now supports bundling code that uses
import attributes (the second iteration). This is much more useful for
bundlers because they are allowed to affect module resolution, which
means the key-value pairs can be provided to plugins. Here's an example,
which uses esbuild's built-in support for the upcoming <a
href="https://github.com/tc39/proposal-json-modules">JSON module
standard</a>:</p>
<pre lang="js"><code>// On static imports
import foo from './package.json' with { type: 'json' }
console.log(foo)
<p>// On dynamic imports
const bar = await import('./package.json', { with: { type: 'json' } })
console.log(bar)
</code></pre></p>
<p>One important consequence of the change in semantics between import
assertions and import attributes is that two imports with identical
paths but different import attributes are now considered to be different
modules. This is because the import attributes are provided to the
loader, which might then use those attributes during loading. For
example, you could imagine an image loader that produces an image of a
different size depending on the import attributes.</p>
<p>Import attributes are now reported in the <a
href="https://esbuild.github.io/api/#metafile">metafile</a> and are now
provided to <a href="https://esbuild.github.io/plugins/#on-load">on-load
plugins</a> as a map in the <code>with</code> property. For example,
here's an esbuild plugin that turns all imports with a <code>type</code>
import attribute equal to <code>'cheese'</code> into a module that
exports the cheese emoji:</p>
<pre lang="js"><code>const cheesePlugin = {
  name: 'cheese',
  setup(build) {
    build.onLoad({ filter: /.*/ }, args =&gt; {
      if (args.with.type === 'cheese') return {
        contents: `export default &quot;🧀&quot;`,
      }
    })
  }
}
<p>require('esbuild').build({
bundle: true,
</code></pre></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/a7773b340bb216d053df91b7479b5aa2a152b0de"><code>a7773b3</code></a>
publish 0.19.7 to npm</li>
<li><a
href="https://github.com/evanw/esbuild/commit/2886b5db37d8f9b85547788a905e863d98151a5b"><code>2886b5d</code></a>
more adjustments to import assertions/attributes</li>
<li><a
href="https://github.com/evanw/esbuild/commit/2dad8309fcec8f668abe0619f531cf0375da2e7b"><code>2dad830</code></a>
add basic support for import assertions</li>
<li><a
href="https://github.com/evanw/esbuild/commit/6b9737a67f1ae51cea68c830937004a2031f96e6"><code>6b9737a</code></a>
fix test262 crash in v8 due to renamed test</li>
<li><a
href="https://github.com/evanw/esbuild/commit/0d9f7652efb71f2c0cfc0b6ccbe5796c9dddc66a"><code>0d9f765</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/3230">#3230</a>,
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/3326">#3326</a>,
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/3394">#3394</a>:
update decorators</li>
<li><a
href="https://github.com/evanw/esbuild/commit/9fc1ed379c82645a656ec0cce534c27f244a658d"><code>9fc1ed3</code></a>
ast helpers: use a context object</li>
<li><a
href="https://github.com/evanw/esbuild/commit/00fa0107ed4fd2b363e2fa3cd2160aeb2f787fc3"><code>00fa010</code></a>
tree shaking: handle destructuring of an array</li>
<li><a
href="https://github.com/evanw/esbuild/commit/f361c7fe557586aa696b5db262b724ce6b241aa0"><code>f361c7f</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/3477">#3477</a>:
forbid <code>--keep-names</code> if not supported</li>
<li><a
href="https://github.com/evanw/esbuild/commit/4c64c191bd41ca6f3ed3e0c13d6d8b2f95660ec9"><code>4c64c19</code></a>
compat-table: sort kangax feature map</li>
<li><a
href="https://github.com/evanw/esbuild/commit/cd7b93f196134a4f395b279ef9b5d09c267fb4d1"><code>cd7b93f</code></a>
dev server: add a fallback <code>favicon.ico</code> handler</li>
<li>Additional commits viewable in <a
href="https://github.com/evanw/esbuild/compare/v0.19.5...v0.19.7">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.19.5&new-version=0.19.7)](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 <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and kodiakhq[bot] authored Nov 26, 2023
1 parent 70992a2 commit 2417049
Showing 1 changed file with 134 additions and 134 deletions.
268 changes: 134 additions & 134 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -766,115 +766,115 @@
resolved "https://registry.yarnpkg.com/@chunkd/source/-/source-11.1.0.tgz#8c163e4f0e87821c175b2aa5447100ee9091e0e2"
integrity sha512-3BcrHK4XDm3t4vDx1OisgcOZ05+EarEqwaGVIL7IMHUmkXwN/Aprlnr7aVP3BYcltgcCcfMd1pXQicbSrP563g==

"@esbuild/android-arm64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.5.tgz#276c5f99604054d3dbb733577e09adae944baa90"
integrity sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==

"@esbuild/android-arm@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.5.tgz#4a3cbf14758166abaae8ba9c01a80e68342a4eec"
integrity sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==

"@esbuild/android-x64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.5.tgz#21a3d11cd4613d2d3c5ccb9e746c254eb9265b0a"
integrity sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==

"@esbuild/darwin-arm64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.5.tgz#714cb839f467d6a67b151ee8255886498e2b9bf6"
integrity sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==

"@esbuild/darwin-x64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.5.tgz#2c553e97a6d2b4ae76a884e35e6cbab85a990bbf"
integrity sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==

"@esbuild/freebsd-arm64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.5.tgz#d554f556718adb31917a0da24277bf84b6ee87f3"
integrity sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==

"@esbuild/freebsd-x64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.5.tgz#288f7358a3bb15d99e73c65c9adaa3dabb497432"
integrity sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==

"@esbuild/linux-arm64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.5.tgz#95933ae86325c93cb6b5e8333d22120ecfdc901b"
integrity sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==

"@esbuild/linux-arm@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.5.tgz#0acef93aa3e0579e46d33b666627bddb06636664"
integrity sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==

"@esbuild/linux-ia32@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.5.tgz#b6e5c9e80b42131cbd6b1ddaa48c92835f1ed67f"
integrity sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==

"@esbuild/linux-loong64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.5.tgz#e5f0cf95a180158b01ff5f417da796a1c09dfbea"
integrity sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==

"@esbuild/linux-mips64el@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.5.tgz#ae36fb86c7d5f641f3a0c8472e83dcb6ea36a408"
integrity sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==

"@esbuild/linux-ppc64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.5.tgz#7960cb1666f0340ddd9eef7b26dcea3835d472d0"
integrity sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==

"@esbuild/linux-riscv64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.5.tgz#32207df26af60a3a9feea1783fc21b9817bade19"
integrity sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==

"@esbuild/linux-s390x@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.5.tgz#b38d5681db89a3723862dfa792812397b1510a7d"
integrity sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==

"@esbuild/linux-x64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.5.tgz#46feba2ad041a241379d150f415b472fe3885075"
integrity sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==

"@esbuild/netbsd-x64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.5.tgz#3b5c1fb068f26bfc681d31f682adf1bea4ef0702"
integrity sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==

"@esbuild/openbsd-x64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.5.tgz#ca6830316ca68056c5c88a875f103ad3235e00db"
integrity sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==

"@esbuild/sunos-x64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.5.tgz#9efc4eb9539a7be7d5a05ada52ee43cda0d8e2dd"
integrity sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==

"@esbuild/win32-arm64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.5.tgz#29f8184afa7a02a956ebda4ed638099f4b8ff198"
integrity sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==

"@esbuild/win32-ia32@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.5.tgz#f3de07afb292ecad651ae4bb8727789de2d95b05"
integrity sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==

"@esbuild/win32-x64@0.19.5":
version "0.19.5"
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.5.tgz#faad84c41ba12e3a0acb52571df9bff37bee75f6"
integrity sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==
"@esbuild/android-arm64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.7.tgz#646156aea43e8e6723de6e94a4ac07c5aed41be1"
integrity sha512-YEDcw5IT7hW3sFKZBkCAQaOCJQLONVcD4bOyTXMZz5fr66pTHnAet46XAtbXAkJRfIn2YVhdC6R9g4xa27jQ1w==

"@esbuild/android-arm@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.7.tgz#0827b49aed813c33ea18ee257c1728cdc4a01030"
integrity sha512-YGSPnndkcLo4PmVl2tKatEn+0mlVMr3yEpOOT0BeMria87PhvoJb5dg5f5Ft9fbCVgtAz4pWMzZVgSEGpDAlww==

"@esbuild/android-x64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.7.tgz#fa294ed5214d88219d519e0ab1bbb0253a89b864"
integrity sha512-jhINx8DEjz68cChFvM72YzrqfwJuFbfvSxZAk4bebpngGfNNRm+zRl4rtT9oAX6N9b6gBcFaJHFew5Blf6CvUw==

"@esbuild/darwin-arm64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.7.tgz#e24d2ed545749ff251eabe8bce11fefa688892d3"
integrity sha512-dr81gbmWN//3ZnBIm6YNCl4p3pjnabg1/ZVOgz2fJoUO1a3mq9WQ/1iuEluMs7mCL+Zwv7AY5e3g1hjXqQZ9Iw==

"@esbuild/darwin-x64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.7.tgz#02d1f8a572874c90d8f55dde8a859e5145bd06f6"
integrity sha512-Lc0q5HouGlzQEwLkgEKnWcSazqr9l9OdV2HhVasWJzLKeOt0PLhHaUHuzb8s/UIya38DJDoUm74GToZ6Wc7NGQ==

"@esbuild/freebsd-arm64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.7.tgz#bc6a69b9a7915da278f0a5ebaec069c813982c22"
integrity sha512-+y2YsUr0CxDFF7GWiegWjGtTUF6gac2zFasfFkRJPkMAuMy9O7+2EH550VlqVdpEEchWMynkdhC9ZjtnMiHImQ==

"@esbuild/freebsd-x64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.7.tgz#ec3708488625d70e565968ceea1355e7c8613865"
integrity sha512-CdXOxIbIzPJmJhrpmJTLx+o35NoiKBIgOvmvT+jeSadYiWJn0vFKsl+0bSG/5lwjNHoIDEyMYc/GAPR9jxusTA==

"@esbuild/linux-arm64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.7.tgz#8e04b66c306858f92d4f90f8222775270755e88a"
integrity sha512-inHqdOVCkUhHNvuQPT1oCB7cWz9qQ/Cz46xmVe0b7UXcuIJU3166aqSunsqkgSGMtUCWOZw3+KMwI6otINuC9g==

"@esbuild/linux-arm@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.7.tgz#12d5b65e089029ee1fe4c591b60969c9b1a85355"
integrity sha512-Y+SCmWxsJOdQtjcBxoacn/pGW9HDZpwsoof0ttL+2vGcHokFlfqV666JpfLCSP2xLxFpF1lj7T3Ox3sr95YXww==

"@esbuild/linux-ia32@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.7.tgz#01eabc2a3ad9039e115db650268e4f48f910dbe2"
integrity sha512-2BbiL7nLS5ZO96bxTQkdO0euGZIUQEUXMTrqLxKUmk/Y5pmrWU84f+CMJpM8+EHaBPfFSPnomEaQiG/+Gmh61g==

"@esbuild/linux-loong64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.7.tgz#70681113632970e6a5766607bbdb98aa18cf4d5f"
integrity sha512-BVFQla72KXv3yyTFCQXF7MORvpTo4uTA8FVFgmwVrqbB/4DsBFWilUm1i2Oq6zN36DOZKSVUTb16jbjedhfSHw==

"@esbuild/linux-mips64el@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.7.tgz#f63c022a71a3d70c482d1943a27cb8997021e230"
integrity sha512-DzAYckIaK+pS31Q/rGpvUKu7M+5/t+jI+cdleDgUwbU7KdG2eC3SUbZHlo6Q4P1CfVKZ1lUERRFP8+q0ob9i2w==

"@esbuild/linux-ppc64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.7.tgz#614eafd08b0c50212f287b948b3c08d6e60f221f"
integrity sha512-JQ1p0SmUteNdUaaiRtyS59GkkfTW0Edo+e0O2sihnY4FoZLz5glpWUQEKMSzMhA430ctkylkS7+vn8ziuhUugQ==

"@esbuild/linux-riscv64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.7.tgz#31d3b63f92f65968268a8e61ba59872538e80e88"
integrity sha512-xGwVJ7eGhkprY/nB7L7MXysHduqjpzUl40+XoYDGC4UPLbnG+gsyS1wQPJ9lFPcxYAaDXbdRXd1ACs9AE9lxuw==

"@esbuild/linux-s390x@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.7.tgz#be94974e0caa0783ae05f9477fd7170b9ac29cb0"
integrity sha512-U8Rhki5PVU0L0nvk+E8FjkV8r4Lh4hVEb9duR6Zl21eIEYEwXz8RScj4LZWA2i3V70V4UHVgiqMpszXvG0Yqhg==

"@esbuild/linux-x64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.7.tgz#84e8018a913dd4ecee954623e395984aef3d0007"
integrity sha512-ZYZopyLhm4mcoZXjFt25itRlocKlcazDVkB4AhioiL9hOWhDldU9n38g62fhOI4Pth6vp+Mrd5rFKxD0/S+7aQ==

"@esbuild/netbsd-x64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.7.tgz#98898ba8800374c9df9bb182ca4f69fcecaf4411"
integrity sha512-/yfjlsYmT1O3cum3J6cmGG16Fd5tqKMcg5D+sBYLaOQExheAJhqr8xOAEIuLo8JYkevmjM5zFD9rVs3VBcsjtQ==

"@esbuild/openbsd-x64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.7.tgz#46dc4eda2adb51f16361b1ad10e9b3f4938c4573"
integrity sha512-MYDFyV0EW1cTP46IgUJ38OnEY5TaXxjoDmwiTXPjezahQgZd+j3T55Ht8/Q9YXBM0+T9HJygrSRGV5QNF/YVDQ==

"@esbuild/sunos-x64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.7.tgz#1650d40dd88412ecc11490119cd23cbaf661a591"
integrity sha512-JcPvgzf2NN/y6X3UUSqP6jSS06V0DZAV/8q0PjsZyGSXsIGcG110XsdmuWiHM+pno7/mJF6fjH5/vhUz/vA9fw==

"@esbuild/win32-arm64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.7.tgz#e61de6c4eb204d83fd912f3ae6812cc8c7d32d25"
integrity sha512-ZA0KSYti5w5toax5FpmfcAgu3ZNJxYSRm0AW/Dao5up0YV1hDVof1NvwLomjEN+3/GMtaWDI+CIyJOMTRSTdMw==

"@esbuild/win32-ia32@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.7.tgz#3d9c159d42c67e37a433e44ef8217c661cb6f6d0"
integrity sha512-CTOnijBKc5Jpk6/W9hQMMvJnsSYRYgveN6O75DTACCY18RA2nqka8dTZR+x/JqXCRiKk84+5+bRKXUSbbwsS0A==

"@esbuild/win32-x64@0.19.7":
version "0.19.7"
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.7.tgz#02c4446f802706098d8e6ee70cf2b7aba96ded0b"
integrity sha512-gRaP2sk6hc98N734luX4VpF318l3w+ofrtTu9j5L8EQXF+FzQKV6alCOHMVoJJHvVK/mGbwBXfOL1HETQu9IGQ==

"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0":
version "4.4.0"
@@ -3064,32 +3064,32 @@ es-to-primitive@^1.2.1:
is-symbol "^1.0.2"

esbuild@^0.19.2:
version "0.19.5"
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.19.5.tgz#53a0e19dfbf61ba6c827d51a80813cf071239a8c"
integrity sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==
version "0.19.7"
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.19.7.tgz#b9a7235097b81278dcf090e2532ed13c95a2ee84"
integrity sha512-6brbTZVqxhqgbpqBR5MzErImcpA0SQdoKOkcWK/U30HtQxnokIpG3TX2r0IJqbFUzqLjhU/zC1S5ndgakObVCQ==
optionalDependencies:
"@esbuild/android-arm" "0.19.5"
"@esbuild/android-arm64" "0.19.5"
"@esbuild/android-x64" "0.19.5"
"@esbuild/darwin-arm64" "0.19.5"
"@esbuild/darwin-x64" "0.19.5"
"@esbuild/freebsd-arm64" "0.19.5"
"@esbuild/freebsd-x64" "0.19.5"
"@esbuild/linux-arm" "0.19.5"
"@esbuild/linux-arm64" "0.19.5"
"@esbuild/linux-ia32" "0.19.5"
"@esbuild/linux-loong64" "0.19.5"
"@esbuild/linux-mips64el" "0.19.5"
"@esbuild/linux-ppc64" "0.19.5"
"@esbuild/linux-riscv64" "0.19.5"
"@esbuild/linux-s390x" "0.19.5"
"@esbuild/linux-x64" "0.19.5"
"@esbuild/netbsd-x64" "0.19.5"
"@esbuild/openbsd-x64" "0.19.5"
"@esbuild/sunos-x64" "0.19.5"
"@esbuild/win32-arm64" "0.19.5"
"@esbuild/win32-ia32" "0.19.5"
"@esbuild/win32-x64" "0.19.5"
"@esbuild/android-arm" "0.19.7"
"@esbuild/android-arm64" "0.19.7"
"@esbuild/android-x64" "0.19.7"
"@esbuild/darwin-arm64" "0.19.7"
"@esbuild/darwin-x64" "0.19.7"
"@esbuild/freebsd-arm64" "0.19.7"
"@esbuild/freebsd-x64" "0.19.7"
"@esbuild/linux-arm" "0.19.7"
"@esbuild/linux-arm64" "0.19.7"
"@esbuild/linux-ia32" "0.19.7"
"@esbuild/linux-loong64" "0.19.7"
"@esbuild/linux-mips64el" "0.19.7"
"@esbuild/linux-ppc64" "0.19.7"
"@esbuild/linux-riscv64" "0.19.7"
"@esbuild/linux-s390x" "0.19.7"
"@esbuild/linux-x64" "0.19.7"
"@esbuild/netbsd-x64" "0.19.7"
"@esbuild/openbsd-x64" "0.19.7"
"@esbuild/sunos-x64" "0.19.7"
"@esbuild/win32-arm64" "0.19.7"
"@esbuild/win32-ia32" "0.19.7"
"@esbuild/win32-x64" "0.19.7"

escalade@^3.1.1:
version "3.1.1"

0 comments on commit 2417049

Please sign in to comment.