Skip to content

Commit 953bb6c

Browse files
authored
Bump esbuild from 0.25.2 to 0.25.3 (#3454)
Bumps [esbuild](https://github.com/evanw/esbuild) from 0.25.2 to 0.25.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/releases">esbuild's releases</a>.</em></p> <blockquote> <h2>v0.25.3</h2> <ul> <li> <p>Fix lowered <code>async</code> arrow functions before <code>super()</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4141">#4141</a>, <a href="https://redirect.github.com/evanw/esbuild/pull/4142">#4142</a>)</p> <p>This change makes it possible to call an <code>async</code> arrow function in a constructor before calling <code>super()</code> when targeting environments without <code>async</code> support, as long as the function body doesn't reference <code>this</code>. Here's an example (notice the change from <code>this</code> to <code>null</code>):</p> <pre lang="js"><code>// Original code class Foo extends Object { constructor() { (async () =&gt; await foo())() super() } } <p>// Old output (with --target=es2016)<br /> class Foo extends Object {<br /> constructor() {<br /> (() =&gt; __async(this, null, function* () {<br /> return yield foo();<br /> }))();<br /> super();<br /> }<br /> }</p> <p>// New output (with --target=es2016)<br /> class Foo extends Object {<br /> constructor() {<br /> (() =&gt; __async(null, null, function* () {<br /> return yield foo();<br /> }))();<br /> super();<br /> }<br /> }<br /> </code></pre></p> <p>Some background: Arrow functions with the <code>async</code> keyword are transformed into generator functions for older language targets such as <code>--target=es2016</code>. Since arrow functions capture <code>this</code>, the generated code forwards <code>this</code> into the body of the generator function. However, JavaScript class syntax forbids using <code>this</code> in a constructor before calling <code>super()</code>, and this forwarding was problematic since previously happened even when the function body doesn't use <code>this</code>. Starting with this release, esbuild will now only forward <code>this</code> if it's used within the function body.</p> <p>This fix was contributed by <a href="https://github.com/magic-akari"><code>@​magic-akari</code></a>.</p> </li> <li> <p>Fix memory leak with <code>--watch=true</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4131">#4131</a>, <a href="https://redirect.github.com/evanw/esbuild/pull/4132">#4132</a>)</p> <p>This release fixes a memory leak with esbuild when <code>--watch=true</code> is used instead of <code>--watch</code>. Previously using <code>--watch=true</code> caused esbuild to continue to use more and more memory for every rebuild, but <code>--watch=true</code> should now behave like <code>--watch</code> and not leak memory.</p> <p>This bug happened because esbuild disables the garbage collector when it's not run as a long-lived process for extra speed, but esbuild's checks for which arguments cause esbuild to be a long-lived process weren't updated for the new <code>--watch=true</code> style of boolean command-line flags. This has been an issue since this boolean flag syntax was added in version 0.14.24 in 2022. These checks are unfortunately separate from the regular argument parser because of how esbuild's internals are organized (the command-line interface is exposed as a separate <a href="https://pkg.go.dev/github.com/evanw/esbuild/pkg/cli">Go API</a> so you can build your own custom esbuild CLI).</p> <p>This fix was contributed by <a href="https://github.com/mxschmitt"><code>@​mxschmitt</code></a>.</p> </li> <li> <p>More concise output for repeated legal comments (<a href="https://redirect.github.com/evanw/esbuild/issues/4139">#4139</a>)</p> <p>Some libraries have many files and also use the same legal comment text in all files. Previously esbuild would copy each legal comment to the output file. Starting with this release, legal comments duplicated across separate files will now be grouped in the output file by unique comment content.</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.25.3</h2> <ul> <li> <p>Fix lowered <code>async</code> arrow functions before <code>super()</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4141">#4141</a>, <a href="https://redirect.github.com/evanw/esbuild/pull/4142">#4142</a>)</p> <p>This change makes it possible to call an <code>async</code> arrow function in a constructor before calling <code>super()</code> when targeting environments without <code>async</code> support, as long as the function body doesn't reference <code>this</code>. Here's an example (notice the change from <code>this</code> to <code>null</code>):</p> <pre lang="js"><code>// Original code class Foo extends Object { constructor() { (async () =&gt; await foo())() super() } } <p>// Old output (with --target=es2016)<br /> class Foo extends Object {<br /> constructor() {<br /> (() =&gt; __async(this, null, function* () {<br /> return yield foo();<br /> }))();<br /> super();<br /> }<br /> }</p> <p>// New output (with --target=es2016)<br /> class Foo extends Object {<br /> constructor() {<br /> (() =&gt; __async(null, null, function* () {<br /> return yield foo();<br /> }))();<br /> super();<br /> }<br /> }<br /> </code></pre></p> <p>Some background: Arrow functions with the <code>async</code> keyword are transformed into generator functions for older language targets such as <code>--target=es2016</code>. Since arrow functions capture <code>this</code>, the generated code forwards <code>this</code> into the body of the generator function. However, JavaScript class syntax forbids using <code>this</code> in a constructor before calling <code>super()</code>, and this forwarding was problematic since previously happened even when the function body doesn't use <code>this</code>. Starting with this release, esbuild will now only forward <code>this</code> if it's used within the function body.</p> <p>This fix was contributed by <a href="https://github.com/magic-akari"><code>@​magic-akari</code></a>.</p> </li> <li> <p>Fix memory leak with <code>--watch=true</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4131">#4131</a>, <a href="https://redirect.github.com/evanw/esbuild/pull/4132">#4132</a>)</p> <p>This release fixes a memory leak with esbuild when <code>--watch=true</code> is used instead of <code>--watch</code>. Previously using <code>--watch=true</code> caused esbuild to continue to use more and more memory for every rebuild, but <code>--watch=true</code> should now behave like <code>--watch</code> and not leak memory.</p> <p>This bug happened because esbuild disables the garbage collector when it's not run as a long-lived process for extra speed, but esbuild's checks for which arguments cause esbuild to be a long-lived process weren't updated for the new <code>--watch=true</code> style of boolean command-line flags. This has been an issue since this boolean flag syntax was added in version 0.14.24 in 2022. These checks are unfortunately separate from the regular argument parser because of how esbuild's internals are organized (the command-line interface is exposed as a separate <a href="https://pkg.go.dev/github.com/evanw/esbuild/pkg/cli">Go API</a> so you can build your own custom esbuild CLI).</p> <p>This fix was contributed by <a href="https://github.com/mxschmitt"><code>@​mxschmitt</code></a>.</p> </li> <li> <p>More concise output for repeated legal comments (<a href="https://redirect.github.com/evanw/esbuild/issues/4139">#4139</a>)</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/677910b073194b64d5ae01aefd7a7465bbf5b27b"><code>677910b</code></a> publish 0.25.3 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/a41040efdbd6464ee7c3c5590105b4a4ae5a03be"><code>a41040e</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4110">#4110</a>: support custom non-IP <code>host</code> values</li> <li><a href="https://github.com/evanw/esbuild/commit/dfe0e1c632396da248d2d175a24fb0a4fe2c79ef"><code>dfe0e1c</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4114">#4114</a>: add a limit to css nesting expansion</li> <li><a href="https://github.com/evanw/esbuild/commit/a54916b92c128aa0596a65bcbafcde1074acf63d"><code>a54916b</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4139">#4139</a>: deduplicate repeated legal comments</li> <li><a href="https://github.com/evanw/esbuild/commit/dc60e6025da48d13ad2d2cc9e21472738099ce20"><code>dc60e60</code></a> run <code>make update-compat-table</code></li> <li><a href="https://github.com/evanw/esbuild/commit/d917038c97b3e859183cfbe426c46928f54e261a"><code>d917038</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4144">#4144</a>: node path resolution edge case</li> <li><a href="https://github.com/evanw/esbuild/commit/7ed168403b7609f1e557feffb3922955c313070a"><code>7ed1684</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4141">#4141</a>: Avoid redundant <code>this</code> access during async function lowering (<a href="https://redirect.github.com/evanw/esbuild/issues/4142">#4142</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/edc3a2343859404d1ec76e9ed05d01f64d677709"><code>edc3a23</code></a> docs(dev): update alias command for <code>make test-go</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4113">#4113</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/1ee8b6717ecd473b7f0d872a811f38fcd7879d85"><code>1ee8b67</code></a> workaround <code>process.exit()</code> not exiting in node</li> <li><a href="https://github.com/evanw/esbuild/commit/5c56e0737c63e209b6679eb97c940081f4d47772"><code>5c56e07</code></a> changelog note with credit for the fix</li> <li>Additional commits viewable in <a href="https://github.com/evanw/esbuild/compare/v0.25.2...v0.25.3">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=esbuild&package-manager=npm_and_yarn&previous-version=0.25.2&new-version=0.25.3)](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>
2 parents 50181c9 + 0078410 commit 953bb6c

File tree

2 files changed

+154
-154
lines changed

2 files changed

+154
-154
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"@hotwired/stimulus": "^3.2.2",
66
"@hotwired/turbo-rails": "^8.0.13",
77
"accessible-autocomplete": "^3.0.1",
8-
"esbuild": "^0.25.2",
8+
"esbuild": "^0.25.3",
99
"govuk-frontend": "^5.9.0",
1010
"idb": "^8.0.2",
1111
"nhsuk-frontend": "^9.3.0",

yarn.lock

Lines changed: 153 additions & 153 deletions
Original file line numberDiff line numberDiff line change
@@ -1225,130 +1225,130 @@
12251225
exec-sh "^0.3.2"
12261226
minimist "^1.2.0"
12271227

1228-
"@esbuild/aix-ppc64@0.25.2":
1229-
version "0.25.2"
1230-
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.2.tgz#b87036f644f572efb2b3c75746c97d1d2d87ace8"
1231-
integrity sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag==
1232-
1233-
"@esbuild/android-arm64@0.25.2":
1234-
version "0.25.2"
1235-
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.2.tgz#5ca7dc20a18f18960ad8d5e6ef5cf7b0a256e196"
1236-
integrity sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w==
1237-
1238-
"@esbuild/android-arm@0.25.2":
1239-
version "0.25.2"
1240-
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.2.tgz#3c49f607b7082cde70c6ce0c011c362c57a194ee"
1241-
integrity sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA==
1242-
1243-
"@esbuild/android-x64@0.25.2":
1244-
version "0.25.2"
1245-
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.2.tgz#8a00147780016aff59e04f1036e7cb1b683859e2"
1246-
integrity sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg==
1247-
1248-
"@esbuild/darwin-arm64@0.25.2":
1249-
version "0.25.2"
1250-
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.2.tgz#486efe7599a8d90a27780f2bb0318d9a85c6c423"
1251-
integrity sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA==
1252-
1253-
"@esbuild/darwin-x64@0.25.2":
1254-
version "0.25.2"
1255-
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.2.tgz#95ee222aacf668c7a4f3d7ee87b3240a51baf374"
1256-
integrity sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA==
1257-
1258-
"@esbuild/freebsd-arm64@0.25.2":
1259-
version "0.25.2"
1260-
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.2.tgz#67efceda8554b6fc6a43476feba068fb37fa2ef6"
1261-
integrity sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w==
1262-
1263-
"@esbuild/freebsd-x64@0.25.2":
1264-
version "0.25.2"
1265-
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.2.tgz#88a9d7ecdd3adadbfe5227c2122d24816959b809"
1266-
integrity sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ==
1267-
1268-
"@esbuild/linux-arm64@0.25.2":
1269-
version "0.25.2"
1270-
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.2.tgz#87be1099b2bbe61282333b084737d46bc8308058"
1271-
integrity sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g==
1272-
1273-
"@esbuild/linux-arm@0.25.2":
1274-
version "0.25.2"
1275-
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.2.tgz#72a285b0fe64496e191fcad222185d7bf9f816f6"
1276-
integrity sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g==
1277-
1278-
"@esbuild/linux-ia32@0.25.2":
1279-
version "0.25.2"
1280-
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.2.tgz#337a87a4c4dd48a832baed5cbb022be20809d737"
1281-
integrity sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ==
1282-
1283-
"@esbuild/linux-loong64@0.25.2":
1284-
version "0.25.2"
1285-
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.2.tgz#1b81aa77103d6b8a8cfa7c094ed3d25c7579ba2a"
1286-
integrity sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w==
1287-
1288-
"@esbuild/linux-mips64el@0.25.2":
1289-
version "0.25.2"
1290-
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.2.tgz#afbe380b6992e7459bf7c2c3b9556633b2e47f30"
1291-
integrity sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q==
1292-
1293-
"@esbuild/linux-ppc64@0.25.2":
1294-
version "0.25.2"
1295-
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.2.tgz#6bf8695cab8a2b135cca1aa555226dc932d52067"
1296-
integrity sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g==
1297-
1298-
"@esbuild/linux-riscv64@0.25.2":
1299-
version "0.25.2"
1300-
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.2.tgz#43c2d67a1a39199fb06ba978aebb44992d7becc3"
1301-
integrity sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw==
1302-
1303-
"@esbuild/linux-s390x@0.25.2":
1304-
version "0.25.2"
1305-
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.2.tgz#419e25737ec815c6dce2cd20d026e347cbb7a602"
1306-
integrity sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q==
1307-
1308-
"@esbuild/linux-x64@0.25.2":
1309-
version "0.25.2"
1310-
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.2.tgz#22451f6edbba84abe754a8cbd8528ff6e28d9bcb"
1311-
integrity sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg==
1312-
1313-
"@esbuild/netbsd-arm64@0.25.2":
1314-
version "0.25.2"
1315-
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.2.tgz#744affd3b8d8236b08c5210d828b0698a62c58ac"
1316-
integrity sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw==
1317-
1318-
"@esbuild/netbsd-x64@0.25.2":
1319-
version "0.25.2"
1320-
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.2.tgz#dbbe7521fd6d7352f34328d676af923fc0f8a78f"
1321-
integrity sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg==
1322-
1323-
"@esbuild/openbsd-arm64@0.25.2":
1324-
version "0.25.2"
1325-
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.2.tgz#f9caf987e3e0570500832b487ce3039ca648ce9f"
1326-
integrity sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg==
1327-
1328-
"@esbuild/openbsd-x64@0.25.2":
1329-
version "0.25.2"
1330-
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.2.tgz#d2bb6a0f8ffea7b394bb43dfccbb07cabd89f768"
1331-
integrity sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw==
1332-
1333-
"@esbuild/sunos-x64@0.25.2":
1334-
version "0.25.2"
1335-
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.2.tgz#49b437ed63fe333b92137b7a0c65a65852031afb"
1336-
integrity sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA==
1337-
1338-
"@esbuild/win32-arm64@0.25.2":
1339-
version "0.25.2"
1340-
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.2.tgz#081424168463c7d6c7fb78f631aede0c104373cf"
1341-
integrity sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q==
1342-
1343-
"@esbuild/win32-ia32@0.25.2":
1344-
version "0.25.2"
1345-
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.2.tgz#3f9e87143ddd003133d21384944a6c6cadf9693f"
1346-
integrity sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg==
1347-
1348-
"@esbuild/win32-x64@0.25.2":
1349-
version "0.25.2"
1350-
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.2.tgz#839f72c2decd378f86b8f525e1979a97b920c67d"
1351-
integrity sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA==
1228+
"@esbuild/aix-ppc64@0.25.3":
1229+
version "0.25.3"
1230+
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.3.tgz#014180d9a149cffd95aaeead37179433f5ea5437"
1231+
integrity sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==
1232+
1233+
"@esbuild/android-arm64@0.25.3":
1234+
version "0.25.3"
1235+
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.3.tgz#649e47e04ddb24a27dc05c395724bc5f4c55cbfe"
1236+
integrity sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==
1237+
1238+
"@esbuild/android-arm@0.25.3":
1239+
version "0.25.3"
1240+
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.3.tgz#8a0f719c8dc28a4a6567ef7328c36ea85f568ff4"
1241+
integrity sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==
1242+
1243+
"@esbuild/android-x64@0.25.3":
1244+
version "0.25.3"
1245+
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.3.tgz#e2ab182d1fd06da9bef0784a13c28a7602d78009"
1246+
integrity sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==
1247+
1248+
"@esbuild/darwin-arm64@0.25.3":
1249+
version "0.25.3"
1250+
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.3.tgz#c7f3166fcece4d158a73dcfe71b2672ca0b1668b"
1251+
integrity sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==
1252+
1253+
"@esbuild/darwin-x64@0.25.3":
1254+
version "0.25.3"
1255+
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.3.tgz#d8c5342ec1a4bf4b1915643dfe031ba4b173a87a"
1256+
integrity sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==
1257+
1258+
"@esbuild/freebsd-arm64@0.25.3":
1259+
version "0.25.3"
1260+
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.3.tgz#9f7d789e2eb7747d4868817417cc968ffa84f35b"
1261+
integrity sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==
1262+
1263+
"@esbuild/freebsd-x64@0.25.3":
1264+
version "0.25.3"
1265+
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.3.tgz#8ad35c51d084184a8e9e76bb4356e95350a64709"
1266+
integrity sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==
1267+
1268+
"@esbuild/linux-arm64@0.25.3":
1269+
version "0.25.3"
1270+
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.3.tgz#3af0da3d9186092a9edd4e28fa342f57d9e3cd30"
1271+
integrity sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==
1272+
1273+
"@esbuild/linux-arm@0.25.3":
1274+
version "0.25.3"
1275+
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.3.tgz#e91cafa95e4474b3ae3d54da12e006b782e57225"
1276+
integrity sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==
1277+
1278+
"@esbuild/linux-ia32@0.25.3":
1279+
version "0.25.3"
1280+
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.3.tgz#81025732d85b68ee510161b94acdf7e3007ea177"
1281+
integrity sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==
1282+
1283+
"@esbuild/linux-loong64@0.25.3":
1284+
version "0.25.3"
1285+
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.3.tgz#3c744e4c8d5e1148cbe60a71a11b58ed8ee5deb8"
1286+
integrity sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==
1287+
1288+
"@esbuild/linux-mips64el@0.25.3":
1289+
version "0.25.3"
1290+
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.3.tgz#1dfe2a5d63702db9034cc6b10b3087cc0424ec26"
1291+
integrity sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==
1292+
1293+
"@esbuild/linux-ppc64@0.25.3":
1294+
version "0.25.3"
1295+
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.3.tgz#2e85d9764c04a1ebb346dc0813ea05952c9a5c56"
1296+
integrity sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==
1297+
1298+
"@esbuild/linux-riscv64@0.25.3":
1299+
version "0.25.3"
1300+
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.3.tgz#a9ea3334556b09f85ccbfead58c803d305092415"
1301+
integrity sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==
1302+
1303+
"@esbuild/linux-s390x@0.25.3":
1304+
version "0.25.3"
1305+
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.3.tgz#f6a7cb67969222b200974de58f105dfe8e99448d"
1306+
integrity sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==
1307+
1308+
"@esbuild/linux-x64@0.25.3":
1309+
version "0.25.3"
1310+
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.3.tgz#a237d3578ecdd184a3066b1f425e314ade0f8033"
1311+
integrity sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==
1312+
1313+
"@esbuild/netbsd-arm64@0.25.3":
1314+
version "0.25.3"
1315+
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.3.tgz#4c15c68d8149614ddb6a56f9c85ae62ccca08259"
1316+
integrity sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA==
1317+
1318+
"@esbuild/netbsd-x64@0.25.3":
1319+
version "0.25.3"
1320+
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.3.tgz#12f6856f8c54c2d7d0a8a64a9711c01a743878d5"
1321+
integrity sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==
1322+
1323+
"@esbuild/openbsd-arm64@0.25.3":
1324+
version "0.25.3"
1325+
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.3.tgz#ca078dad4a34df192c60233b058db2ca3d94bc5c"
1326+
integrity sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ==
1327+
1328+
"@esbuild/openbsd-x64@0.25.3":
1329+
version "0.25.3"
1330+
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.3.tgz#c9178adb60e140e03a881d0791248489c79f95b2"
1331+
integrity sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==
1332+
1333+
"@esbuild/sunos-x64@0.25.3":
1334+
version "0.25.3"
1335+
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.3.tgz#03765eb6d4214ff27e5230af779e80790d1ee09f"
1336+
integrity sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==
1337+
1338+
"@esbuild/win32-arm64@0.25.3":
1339+
version "0.25.3"
1340+
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.3.tgz#f1c867bd1730a9b8dfc461785ec6462e349411ea"
1341+
integrity sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==
1342+
1343+
"@esbuild/win32-ia32@0.25.3":
1344+
version "0.25.3"
1345+
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.3.tgz#77491f59ef6c9ddf41df70670d5678beb3acc322"
1346+
integrity sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==
1347+
1348+
"@esbuild/win32-x64@0.25.3":
1349+
version "0.25.3"
1350+
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.3.tgz#b17a2171f9074df9e91bfb07ef99a892ac06412a"
1351+
integrity sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==
13521352

13531353
"@hotwired/stimulus-webpack-helpers@^1.0.0":
13541354
version "1.0.1"
@@ -2917,36 +2917,36 @@ esbuild-jest@^0.5.0:
29172917
"@babel/plugin-transform-modules-commonjs" "^7.12.13"
29182918
babel-jest "^26.6.3"
29192919

2920-
esbuild@^0.25.2:
2921-
version "0.25.2"
2922-
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.2.tgz#55a1d9ebcb3aa2f95e8bba9e900c1a5061bc168b"
2923-
integrity sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ==
2920+
esbuild@^0.25.3:
2921+
version "0.25.3"
2922+
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.3.tgz#371f7cb41283e5b2191a96047a7a89562965a285"
2923+
integrity sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==
29242924
optionalDependencies:
2925-
"@esbuild/aix-ppc64" "0.25.2"
2926-
"@esbuild/android-arm" "0.25.2"
2927-
"@esbuild/android-arm64" "0.25.2"
2928-
"@esbuild/android-x64" "0.25.2"
2929-
"@esbuild/darwin-arm64" "0.25.2"
2930-
"@esbuild/darwin-x64" "0.25.2"
2931-
"@esbuild/freebsd-arm64" "0.25.2"
2932-
"@esbuild/freebsd-x64" "0.25.2"
2933-
"@esbuild/linux-arm" "0.25.2"
2934-
"@esbuild/linux-arm64" "0.25.2"
2935-
"@esbuild/linux-ia32" "0.25.2"
2936-
"@esbuild/linux-loong64" "0.25.2"
2937-
"@esbuild/linux-mips64el" "0.25.2"
2938-
"@esbuild/linux-ppc64" "0.25.2"
2939-
"@esbuild/linux-riscv64" "0.25.2"
2940-
"@esbuild/linux-s390x" "0.25.2"
2941-
"@esbuild/linux-x64" "0.25.2"
2942-
"@esbuild/netbsd-arm64" "0.25.2"
2943-
"@esbuild/netbsd-x64" "0.25.2"
2944-
"@esbuild/openbsd-arm64" "0.25.2"
2945-
"@esbuild/openbsd-x64" "0.25.2"
2946-
"@esbuild/sunos-x64" "0.25.2"
2947-
"@esbuild/win32-arm64" "0.25.2"
2948-
"@esbuild/win32-ia32" "0.25.2"
2949-
"@esbuild/win32-x64" "0.25.2"
2925+
"@esbuild/aix-ppc64" "0.25.3"
2926+
"@esbuild/android-arm" "0.25.3"
2927+
"@esbuild/android-arm64" "0.25.3"
2928+
"@esbuild/android-x64" "0.25.3"
2929+
"@esbuild/darwin-arm64" "0.25.3"
2930+
"@esbuild/darwin-x64" "0.25.3"
2931+
"@esbuild/freebsd-arm64" "0.25.3"
2932+
"@esbuild/freebsd-x64" "0.25.3"
2933+
"@esbuild/linux-arm" "0.25.3"
2934+
"@esbuild/linux-arm64" "0.25.3"
2935+
"@esbuild/linux-ia32" "0.25.3"
2936+
"@esbuild/linux-loong64" "0.25.3"
2937+
"@esbuild/linux-mips64el" "0.25.3"
2938+
"@esbuild/linux-ppc64" "0.25.3"
2939+
"@esbuild/linux-riscv64" "0.25.3"
2940+
"@esbuild/linux-s390x" "0.25.3"
2941+
"@esbuild/linux-x64" "0.25.3"
2942+
"@esbuild/netbsd-arm64" "0.25.3"
2943+
"@esbuild/netbsd-x64" "0.25.3"
2944+
"@esbuild/openbsd-arm64" "0.25.3"
2945+
"@esbuild/openbsd-x64" "0.25.3"
2946+
"@esbuild/sunos-x64" "0.25.3"
2947+
"@esbuild/win32-arm64" "0.25.3"
2948+
"@esbuild/win32-ia32" "0.25.3"
2949+
"@esbuild/win32-x64" "0.25.3"
29502950

29512951
escalade@^3.1.1:
29522952
version "3.1.1"

0 commit comments

Comments
 (0)