docs: add `nodejs-addons` example (#19475)
Github Actions / lint (push) Waiting to run Details
Github Actions / validate-legacy-node (push) Waiting to run Details
Github Actions / benchmark (push) Waiting to run Details
Github Actions / basic (push) Waiting to run Details
Github Actions / unit (push) Waiting to run Details
Github Actions / integration (10.x, macos-latest, a) (push) Blocked by required conditions Details
Github Actions / integration (10.x, macos-latest, b) (push) Blocked by required conditions Details
Github Actions / integration (10.x, ubuntu-latest, a) (push) Blocked by required conditions Details
Github Actions / integration (10.x, ubuntu-latest, b) (push) Blocked by required conditions Details
Github Actions / integration (10.x, windows-latest, a) (push) Blocked by required conditions Details
Github Actions / integration (10.x, windows-latest, b) (push) Blocked by required conditions Details
Github Actions / integration (12.x, ubuntu-latest, a) (push) Blocked by required conditions Details
Github Actions / integration (14.x, ubuntu-latest, a) (push) Blocked by required conditions Details
Github Actions / integration (16.x, ubuntu-latest, a) (push) Blocked by required conditions Details
Github Actions / integration (18.x, ubuntu-latest, a) (push) Blocked by required conditions Details
Github Actions / integration (18.x, ubuntu-latest, b) (push) Blocked by required conditions Details
Github Actions / integration (20.x, macos-latest, a) (push) Blocked by required conditions Details
Github Actions / integration (20.x, macos-latest, b) (push) Blocked by required conditions Details
Github Actions / integration (20.x, ubuntu-latest, a) (push) Blocked by required conditions Details
Github Actions / integration (20.x, ubuntu-latest, b) (push) Blocked by required conditions Details
Github Actions / integration (20.x, windows-latest, a) (push) Blocked by required conditions Details
Github Actions / integration (20.x, windows-latest, b) (push) Blocked by required conditions Details
Github Actions / integration (22.x, macos-latest, a) (push) Blocked by required conditions Details
Github Actions / integration (22.x, macos-latest, b) (push) Blocked by required conditions Details
Github Actions / integration (22.x, ubuntu-latest, a) (push) Blocked by required conditions Details
Github Actions / integration (22.x, ubuntu-latest, b) (push) Blocked by required conditions Details
Github Actions / integration (22.x, windows-latest, a) (push) Blocked by required conditions Details
Github Actions / integration (22.x, windows-latest, b) (push) Blocked by required conditions Details
Github Actions / integration (23.x, ubuntu-latest, a) (push) Blocked by required conditions Details
Github Actions / integration (23.x, ubuntu-latest, b) (push) Blocked by required conditions Details
Github Actions / integration (lts/*, ubuntu-latest, a, 1) (push) Blocked by required conditions Details
Github Actions / integration (lts/*, ubuntu-latest, b, 1) (push) Blocked by required conditions Details

This commit is contained in:
Alexander Akait 2025-04-28 21:11:48 +03:00 committed by GitHub
parent 7d7d7033fc
commit 88e1c83b97
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
86 changed files with 836 additions and 192 deletions

View File

@ -14,7 +14,7 @@ jobs:
- name: "Dependency Review"
uses: actions/dependency-review-action@v4
with:
allow-dependencies-licenses: "pkg:npm/@cspell/dict-en-common-misspellings, pkg:npm/flatted, pkg:npm/parse-imports, pkg:npm/prettier, pkg:npm/type-fest"
allow-dependencies-licenses: "pkg:npm/@cspell/dict-en-common-misspellings, pkg:npm/flatted, pkg:npm/parse-imports, pkg:npm/prettier, pkg:npm/type-fest, pkg:npm/abbrev, pkg:npm/@pkgjs/parseargs"
allow-licenses: |
0BSD,
AFL-1.1,

1
.gitignore vendored
View File

@ -8,6 +8,7 @@
/benchmark/js
/benchmark/fixtures
/examples/**/dist
/examples/nodejs-addons/build/**
/assembly/**/*.wat
/assembly/**/*.wasm
/coverage

View File

@ -182,6 +182,8 @@
"pathinfo",
"performant",
"Phoscur",
"parseargs",
"pkgjs",
"pmodule",
"pnpm",
"polyfilled",

View File

@ -113,7 +113,7 @@ chunk (runtime: pageC) pageC.bundle.js (pageC) 68 bytes (javascript) 4.94 KiB (r
./pageC.js 68 bytes [built] [code generated]
[used exports unknown]
entry ./pageC pageC
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -172,5 +172,5 @@ chunk (runtime: pageC) pageC.bundle.js (pageC) 68 bytes (javascript) 4.94 KiB (r
./pageC.js 68 bytes [built] [code generated]
[no exports used]
entry ./pageC pageC
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -196,5 +196,5 @@ chunk (runtime: main) output.js (main) 1.54 KiB (javascript) 274 bytes (runtime)
[no exports]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -217,5 +217,5 @@ chunk (runtime: main) output.js (main) 9.58 KiB (javascript) 14.6 KiB (asset) 30
[no exports]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -16,7 +16,7 @@ const targetArgs = global.NO_TARGET_ARGS ? "" : "--entry ./example.js --output-f
const displayReasons = global.NO_REASONS ? "" : "--stats-reasons --stats-used-exports --stats-provided-exports";
const statsArgs = global.NO_STATS_OPTIONS ? "" : "--stats-chunks --stats-modules-space 99999 --stats-chunk-origins";
const publicPathArgs = global.NO_PUBLIC_PATH ? "" : '--output-public-path "dist/"';
const statsColorsArg = global.STATS_COLORS ? "" : "--no-stats-colors";
const statsColorsArg = global.STATS_COLORS ? "" : "--no-color";
const commonArgs = `${statsColorsArg} ${statsArgs} ${publicPathArgs} ${extraArgs} ${targetArgs}`;
let readme = fs.readFileSync(require("path").join(process.cwd(), "template.md"), "utf-8");
@ -80,7 +80,16 @@ const doCompileAndReplace = (args, prefix, callback) => {
if (error !== null)
console.log(error);
try {
readme = tc.replaceResults(readme, process.cwd(), stdout.replace(/[\r?\n]*$/, ""), prefix);
readme = tc.replaceResults(
readme,
process.cwd(),
stdout
.replace(/[\r?\n]*$/, "")
.replace(/\d\d\d\d-(0[1-9]|1[0-2])-(0[1-9]|[1-2]\d|3[0-1])/g, "XXXX-XX-XX")
.replace(/([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]/g, "XXXX:XX:XX")
.replace(/webpack [0-9.]+/g, "webpack X.X.X"),
prefix
);
} catch (e) {
console.log(stderr);
throw e;

View File

@ -76,7 +76,7 @@ modules by path https:// 30 KiB
[no exports]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -88,5 +88,5 @@ orphan modules 30 KiB [orphan] 26 modules
[no exports]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -411,7 +411,7 @@ chunk (runtime: runtime~main) 3.[chunkhash].js 28 bytes [rendered]
./async2.js 28 bytes [built] [code generated]
[used exports unknown]
import() ./async2 ./example.js 3:0-18
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -440,5 +440,5 @@ chunk (runtime: runtime~main) main.[chunkhash].js (main) 55 bytes [initial] [ren
./example.js 55 bytes [built] [code generated]
[no exports used]
entry ./example main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -194,7 +194,7 @@ chunk (runtime: main) output.js (main) 634 bytes [entry] [rendered]
./example.js 70 bytes [built] [code generated]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
asset without.js 3.09 KiB [emitted] (name: main)
chunk (runtime: main) without.js (main) 634 bytes [entry] [rendered]
@ -203,7 +203,7 @@ chunk (runtime: main) without.js (main) 634 bytes [entry] [rendered]
./example.js 70 bytes [built] [code generated]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -216,7 +216,7 @@ chunk (runtime: main) output.js (main) 634 bytes [entry] [rendered]
./example.js 70 bytes [built] [code generated]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
asset without.js 551 bytes [emitted] [minimized] (name: main) 1 related asset
chunk (runtime: main) without.js (main) 634 bytes [entry] [rendered]
@ -225,5 +225,5 @@ chunk (runtime: main) without.js (main) 634 bytes [entry] [rendered]
./example.js 70 bytes [built] [code generated]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -356,7 +356,7 @@ chunk (runtime: main) require_context_templates_sync_recursive_.output.js 457 by
[no exports]
[used exports unknown]
amd require context ./example.js 2:1-4:3
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -376,5 +376,5 @@ chunk (runtime: main) require_context_templates_sync_recursive_.output.js 457 by
../require.context/templates/ sync ^\.\/.*$ 217 bytes [built] [code generated]
[no exports]
amd require context ./example.js 2:1-4:3
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -356,7 +356,7 @@ chunk (runtime: main) require_context_templates_sync_recursive_.output.js 457 by
[no exports]
[used exports unknown]
cjs require context ./example.js 3:11-64
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -376,5 +376,5 @@ chunk (runtime: main) require_context_templates_sync_recursive_.output.js 457 by
../require.context/templates/ sync ^\.\/.*$ 217 bytes [built] [code generated]
[no exports]
cjs require context ./example.js 3:11-64
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -314,7 +314,7 @@ chunk (runtime: main) output.js (main) 375 bytes (javascript) 4.94 KiB (runtime)
./example.js 94 bytes [built] [code generated]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -335,5 +335,5 @@ chunk (runtime: main) output.js (main) 375 bytes (javascript) 4.94 KiB (runtime)
./example.js 94 bytes [built] [code generated]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -613,7 +613,7 @@ chunk (runtime: runtime) runtime.js (runtime) 6.74 KiB ={other-vendors}= ={react
> react react-vendors
> react-dom react-vendors
runtime modules 6.74 KiB 10 modules
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -684,5 +684,5 @@ chunk (runtime: runtime) runtime.js (runtime) 6.74 KiB ={other-vendors}= ={react
> react react-vendors
> react-dom react-vendors
runtime modules 6.74 KiB 10 modules
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -330,7 +330,7 @@ chunk (runtime: react-vendors) react-vendors.js (react-vendors) 87 bytes (javasc
harmony import specifier react ./app.js 5:12-17
cjs self exports reference ./node_modules/react.js 1:0-14
entry react react-vendors
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -371,5 +371,5 @@ chunk (runtime: react-vendors) react-vendors.js (react-vendors) 87 bytes (javasc
harmony import specifier react ./app.js 5:12-17
cjs self exports reference ./node_modules/react.js 1:0-14
entry react react-vendors
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -430,7 +430,7 @@ chunk (runtime: main) output.js (main) 414 bytes (javascript) 6.88 KiB (runtime)
[no exports]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -467,5 +467,5 @@ chunk (runtime: main) output.js (main) 403 bytes (javascript) 6.62 KiB (runtime)
[no exports]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -407,7 +407,7 @@ chunk (runtime: main) output.js (main) 597 bytes (javascript) 5.5 KiB (runtime)
./example.js 437 bytes [built] [code generated]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -445,5 +445,5 @@ chunk (runtime: main) output.js (main) 597 bytes (javascript) 5.5 KiB (runtime)
./example.js 437 bytes [built] [code generated]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -394,7 +394,7 @@ chunk (runtime: main) output.js (main) 441 bytes (javascript) 5.5 KiB (runtime)
./example.js 281 bytes [built] [code generated]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -432,5 +432,5 @@ chunk (runtime: main) output.js (main) 441 bytes (javascript) 5.5 KiB (runtime)
./example.js 281 bytes [built] [code generated]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -386,7 +386,7 @@ chunk (runtime: main) 994.output.js (chunk-bar-baz0) 38 bytes [rendered]
[used exports unknown]
import() context element ./bar ./templates/ lazy ^\.\/ba.*$ chunkName: chunk-bar-baz namespace object ./bar
import() context element ./bar.js ./templates/ lazy ^\.\/ba.*$ chunkName: chunk-bar-baz namespace object ./bar.js
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -424,5 +424,5 @@ chunk (runtime: main) 994.output.js (chunk-bar-baz0) 38 bytes [rendered]
[exports: default]
import() context element ./bar ./templates/ lazy ^\.\/ba.*$ chunkName: chunk-bar-baz namespace object ./bar
import() context element ./bar.js ./templates/ lazy ^\.\/ba.*$ chunkName: chunk-bar-baz namespace object ./bar.js
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -350,7 +350,7 @@ chunk (runtime: main) node_modules_c_js-node_modules_d_js.output.js 22 bytes [re
./node_modules/d.js 11 bytes [built] [code generated]
[used exports unknown]
cjs require d ./example.js 5:12-24
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -373,5 +373,5 @@ chunk (runtime: main) node_modules_c_js-node_modules_d_js.output.js 22 bytes [re
./node_modules/d.js 11 bytes [built] [code generated]
[used exports unknown]
cjs require d ./example.js 5:12-24
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -124,7 +124,7 @@ chunk (runtime: main) output.js (main) 206 bytes [entry] [rendered]
./example.js 31 bytes [built] [code generated]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -137,5 +137,5 @@ chunk (runtime: main) output.js (main) 206 bytes [entry] [rendered]
./example.js 31 bytes [built] [code generated]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -719,7 +719,7 @@ chunk (runtime: pageA, pageB) vendor.js (vendor) (id hint: vendor) 54 bytes [ini
[used exports unknown]
cjs self exports reference ./node_modules/vendor2.js 1:0-14
cjs require vendor2 ./pageB.js 1:14-32
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -786,5 +786,5 @@ chunk (runtime: pageA, pageB) vendor.js (vendor) (id hint: vendor) 54 bytes [ini
[used exports unknown]
cjs self exports reference ./node_modules/vendor2.js 1:0-14
cjs require vendor2 ./pageB.js 1:14-32
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -486,7 +486,7 @@ chunk (runtime: main) reusableComponent_js.output.js 69 bytes [rendered] split c
cjs require ./reusableComponent ./pageA.js 1:24-54
cjs require ./reusableComponent ./pageC.js 1:24-54
cjs self exports reference ./reusableComponent.js 1:0-14
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -529,5 +529,5 @@ chunk (runtime: main) reusableComponent_js.output.js 69 bytes [rendered] split c
cjs require ./reusableComponent ./pageA.js 1:24-54
cjs require ./reusableComponent ./pageC.js 1:24-54
cjs self exports reference ./reusableComponent.js 1:0-14
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -144,7 +144,7 @@ chunk (runtime: main) output.js (main) 326 bytes [entry] [rendered]
./example.js 72 bytes [built] [code generated]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -157,5 +157,5 @@ chunk (runtime: main) output.js (main) 326 bytes [entry] [rendered]
./example.js 72 bytes [built] [code generated]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -567,7 +567,7 @@ chunk (runtime: main) 1.output.js, 1.output.css 1 bytes (javascript) 23 bytes (c
[no exports]
[used exports unknown]
import() ./lazy-style.css ./example.js 4:0-26
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -601,5 +601,5 @@ chunk (runtime: main) 822.output.js, 822.output.css 1 bytes (javascript) 23 byte
css ./lazy-style.css 1 bytes (javascript) 23 bytes (css) [built] [code generated]
[no exports]
import() ./lazy-style.css ./example.js + 2 modules ./example.js 4:0-26
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -255,5 +255,5 @@ chunk (runtime: main) output.js (main) 919 bytes (javascript) 274 bytes (runtime
[no exports]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -173,7 +173,7 @@ chunk (runtime: main) vendor.js (main) 57 bytes (javascript) 670 bytes (runtime)
[used exports unknown]
dll entry 0:0-0
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -187,5 +187,5 @@ chunk (runtime: main) vendor.js (main) 57 bytes (javascript) 670 bytes (runtime)
dll main 12 bytes [built] [code generated]
dll entry 0:0-0
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -163,7 +163,7 @@ chunk (runtime: main) app.js (main) 178 bytes (javascript) 274 bytes (runtime) [
[no exports]
[used exports unknown]
entry ./example-app main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -177,7 +177,7 @@ chunk (runtime: main) app.js (main) 178 bytes [entry] [rendered]
[no exports]
[no exports used]
entry ./example-app main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
<!-- @TODO:

View File

@ -234,7 +234,7 @@ chunk (runtime: dll) dll.js (dll) 211 bytes (javascript) 670 bytes (runtime) [en
[used exports unknown]
dll entry 0:0-0
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -248,5 +248,5 @@ chunk (runtime: dll) dll.js (dll) 211 bytes (javascript) 670 bytes (runtime) [en
dll dll 12 bytes [built] [code generated]
dll entry 0:0-0
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -208,7 +208,7 @@ chunk (runtime: main) output.js (main) 541 bytes [entry] [rendered]
./example.js 205 bytes [built] [code generated]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -221,5 +221,5 @@ chunk (runtime: main) output.js (main) 541 bytes [entry] [rendered]
./example.js 205 bytes [built] [code generated]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -162,7 +162,7 @@ chunk (runtime: beta) MyDll.beta.js (beta) 80 bytes [entry] [rendered]
[used exports unknown]
dll entry 0:0-0
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -182,5 +182,5 @@ chunk (runtime: alpha) MyDll.alpha.js (alpha) 85 bytes [entry] [rendered]
dll alpha 12 bytes [built] [code generated]
dll entry 0:0-0
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -236,7 +236,7 @@ vendor:
[used exports unknown]
dll entry 0:0-0
used as library export
vendor (webpack 5.99.7) compiled successfully
vendor (webpack X.X.X) compiled successfully
app:
asset pageB.js 2.63 KiB [emitted] (name: pageB)
@ -262,7 +262,7 @@ app:
[used exports unknown]
cjs self exports reference ./pageC.js 1:0-14
entry ./pageC pageC
app (webpack 5.99.7) compiled successfully
app (webpack X.X.X) compiled successfully
```
## Production mode
@ -276,7 +276,7 @@ vendor:
dll main 12 bytes [built] [code generated]
dll entry 0:0-0
used as library export
vendor (webpack 5.99.7) compiled successfully
vendor (webpack X.X.X) compiled successfully
app:
asset pageB.js 297 bytes [emitted] [minimized] (name: pageB)
@ -302,5 +302,5 @@ app:
[used exports unknown]
cjs self exports reference ./pageC.js 1:0-14
entry ./pageC pageC
app (webpack 5.99.7) compiled successfully
app (webpack X.X.X) compiled successfully
```

View File

@ -162,7 +162,7 @@ chunk (runtime: main) output.js (main) 194 bytes [entry] [rendered]
[used exports unknown]
entry ./example.js main
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -176,5 +176,5 @@ chunk (runtime: main) output.js (main) 194 bytes [entry] [rendered]
[exports: exampleValue]
entry ./example.js main
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -344,7 +344,7 @@ chunk (runtime: main) 964.output.js 21 bytes [rendered]
[used exports unknown]
cjs self exports reference ./c.js 1:0-14
amd require ./c ./example.js 1:0-52
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -417,5 +417,5 @@ chunk (runtime: main) 964.output.js 21 bytes [rendered]
[used exports unknown]
cjs self exports reference ./c.js 1:0-14
amd require ./c ./example.js 1:0-52
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -389,7 +389,7 @@ chunk (runtime: main) output.js (main) 164 bytes (javascript) 4.94 KiB (runtime)
./example.js 164 bytes [built] [code generated]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -430,5 +430,5 @@ chunk (runtime: main) output.js (main) 164 bytes (javascript) 4.94 KiB (runtime)
./example.js 164 bytes [built] [code generated]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -286,7 +286,7 @@ chunk (runtime: main) output.js (main) 1.13 KiB (javascript) 937 bytes (runtime)
[no exports]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -301,5 +301,5 @@ chunk (runtime: main) output.js (main) 1.13 KiB (javascript) 670 bytes (runtime)
[no exports]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -115,7 +115,7 @@ chunk (runtime: main) MyLibrary.umd.js (main) 92 bytes (javascript) 670 bytes (r
[used exports unknown]
entry ./example main
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -129,5 +129,5 @@ chunk (runtime: main) MyLibrary.umd.js (main) 92 bytes (javascript) 670 bytes (r
[exports: default, increment, value]
entry ./example main
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -256,7 +256,7 @@ chunk (runtime: main) output.js (main) 698 bytes (javascript) 670 bytes (runtime
[no exports]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -271,5 +271,5 @@ chunk (runtime: main) output.js (main) 461 bytes (javascript) 396 bytes (runtime
[no exports]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -352,7 +352,7 @@ chunk (runtime: main) output.js (main) 400 bytes (javascript) 5.5 KiB (runtime)
[no exports]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -372,5 +372,5 @@ chunk (runtime: main) output.js (main) 400 bytes (javascript) 5.5 KiB (runtime)
[no exports]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -58,7 +58,7 @@ chunk (runtime: main) adcc62444431e4f1597f.js 7.83 KiB [rendered]
> react-dom ./example.js 2:0-22
dependent modules 6.5 KiB [dependent] 1 module
../../node_modules/react-dom/index.js 1.33 KiB [built] [code generated]
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -75,7 +75,7 @@ chunk (runtime: main) 954fd9a9a767ef883087.js (main) 16.9 KiB (javascript) 4.94
runtime modules 4.94 KiB 6 modules
dependent modules 16.9 KiB [dependent] 2 modules
./example.js 42 bytes [built] [code generated]
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Records

View File

@ -576,7 +576,7 @@ chunk (runtime: pageA, pageB) router_js.bundle.js 951 bytes [initial] [rendered]
[used exports unknown]
entry ./router pageA
entry ./router pageB
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -631,5 +631,5 @@ chunk (runtime: pageA, pageB) router_js.bundle.js 951 bytes [initial] [rendered]
[no exports used]
entry ./router pageA
entry ./router pageB
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -321,7 +321,7 @@ chunk (runtime: main) output.js (main) 3.01 KiB (javascript) 937 bytes (runtime)
./example.js 205 bytes [built] [code generated]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -335,5 +335,5 @@ chunk (runtime: main) output.js (main) 3.01 KiB (javascript) 937 bytes (runtime)
./example.js 205 bytes [built] [code generated]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -134,5 +134,5 @@ chunk (runtime: pageF) pageF.js (pageF) 137 bytes (javascript) 3.01 KiB (runtime
runtime modules 3.01 KiB 5 modules
dependent modules 31 bytes [dependent] 1 module
./pages/f.js 106 bytes [built] [code generated]
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -506,7 +506,7 @@ chunk (runtime: main) require_context_templates_sync_recursive_js_.output.js 433
[no exports]
[used exports unknown]
amd require context ./example.js 7:0-14:1
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -527,5 +527,5 @@ chunk (runtime: main) require_context_templates_sync_recursive_js_.output.js 433
../require.context/templates/ sync ^\.\/.*\.js$ 193 bytes [built] [code generated]
[no exports]
amd require context ./example.js 7:0-14:1
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -259,7 +259,7 @@ chunk (runtime: main) 1.output.js 146 bytes [rendered]
[exports: decrement, increment, reset, value]
import() ./counter ./example.js + 1 modules ./example.js 4:23-42
import() ./counter ./example.js + 1 modules ./methods.js 2:8-27
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -282,5 +282,5 @@ chunk (runtime: main) output.js (main) 420 bytes (javascript) 3.05 KiB (runtime)
[no exports used]
entry ./example.js main
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -2100,7 +2100,7 @@ app:
chunk (runtime: app) 6 bytes (remote) 6 bytes (share-init)
> mfe-c/Component2 ./src/App.js 7:49-75
remote mfe-c/Component2 6 bytes (remote) 6 bytes (share-init) [built] [code generated]
app (webpack 5.99.7) compiled successfully
app (webpack X.X.X) compiled successfully
mfe-b:
assets by chunk 1020 KiB (id hint: vendors)
@ -2129,7 +2129,7 @@ mfe-b:
> consume shared module (default) react@^19.0.0 (singleton) (fallback: ../../node_modules/react/index.js)
dependent modules 16.7 KiB [dependent] 1 module
../../node_modules/react/index.js 186 bytes [built] [code generated]
mfe-b (webpack 5.99.7) compiled successfully
mfe-b (webpack X.X.X) compiled successfully
mfe-c:
assets by chunk 1020 KiB (id hint: vendors)
@ -2167,7 +2167,7 @@ mfe-c:
> ./src-c/Component container entry ./Component
> ./src-c/LazyComponent container entry ./Component2
consume shared module (default) react@^19.0.0 (singleton) 42 bytes [built] [code generated]
mfe-c (webpack 5.99.7) compiled successfully
mfe-c (webpack X.X.X) compiled successfully
```
## Production mode
@ -2186,9 +2186,9 @@ app:
external "mfeCCC@/dist/ccc/mfeCCC.js" 42 bytes [built] [code generated]
provide shared module (default) react@19.1.0 = ../../node_modules/react/index.js 42 bytes [built] [code generated]
chunk (runtime: app) node_modules_react_index_js.js 16.9 KiB [rendered]
> provide shared module (default) react@19.1.0 = ../../node_modules/react/index.js
> consume shared module (default) react@^19.1.0 (singleton) (fallback: ../../node_modules/react/index.js)
> consume shared module (default) react@^19.0.0 (singleton) (fallback: ../../node_modules/react/index.js)
> provide shared module (default) react@19.1.0 = ../../node_modules/react/index.js
dependent modules 16.7 KiB [dependent] 1 module
../../node_modules/react/index.js 186 bytes [built] [code generated]
chunk (runtime: app) src_bootstrap_js.js 26.3 KiB (javascript) 84 bytes (consume-shared) 12 bytes (remote) 12 bytes (share-init) [rendered]
@ -2198,7 +2198,7 @@ app:
chunk (runtime: app) 6 bytes (remote) 6 bytes (share-init)
> mfe-c/Component2 ./src/App.js 7:49-75
remote mfe-c/Component2 6 bytes (remote) 6 bytes (share-init) [built] [code generated]
app (webpack 5.99.7) compiled successfully
app (webpack X.X.X) compiled successfully
mfe-b:
asset vendors-node_modules_date-fns_index_js.js 70.4 KiB [emitted] [minimized] (id hint: vendors)
@ -2213,8 +2213,8 @@ mfe-b:
provide shared module (default) date-fns@4.1.0 = ../../node_modules/dat...(truncated) 42 bytes [built] [code generated]
provide shared module (default) react@19.1.0 = ../../node_modules/react/index.js 42 bytes [built] [code generated]
chunk (runtime: mfeBBB) node_modules_react_index_js.js 16.9 KiB [rendered]
> provide shared module (default) react@19.1.0 = ../../node_modules/react/index.js
> consume shared module (default) react@^19.0.0 (singleton) (fallback: ../../node_modules/react/index.js)
> provide shared module (default) react@19.1.0 = ../../node_modules/react/index.js
dependent modules 16.7 KiB [dependent] 1 module
../../node_modules/react/index.js 186 bytes [built] [code generated]
chunk (runtime: mfeBBB) src-b_Component_js.js 752 bytes (javascript) 84 bytes (consume-shared) [rendered]
@ -2225,7 +2225,7 @@ mfe-b:
> consume shared module (default) date-fns@^4.0.0 (strict) (fallback: ../../node_modules/date-fns/index.js)
> provide shared module (default) date-fns@4.1.0 = ../../node_modules/date-fns/index.js
../../node_modules/date-fns/index.js + 302 modules 520 KiB [built] [code generated]
mfe-b (webpack 5.99.7) compiled successfully
mfe-b (webpack X.X.X) compiled successfully
mfe-c:
asset vendors-node_modules_date-fns_index_js.js 70.4 KiB [emitted] [minimized] (id hint: vendors)
@ -2261,5 +2261,5 @@ mfe-c:
> ./src-c/Component container entry ./Component
> ./src-c/LazyComponent container entry ./Component2
consume shared module (default) react@^19.0.0 (singleton) 42 bytes [built] [code generated]
mfe-c (webpack 5.99.7) compiled successfully
mfe-c (webpack X.X.X) compiled successfully
```

View File

@ -87,7 +87,7 @@ chunk (runtime: main) output.js (main) 302 bytes [entry] [rendered]
[used exports unknown]
entry ./example.js main
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -101,5 +101,5 @@ chunk (runtime: main) output.js (main) 302 bytes [entry] [rendered]
[all exports used]
entry ./example.js main
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -871,7 +871,7 @@ chunk (runtime: 1fad8bf8de78b0a77bfd) 936.js 152 bytes [rendered]
[used exports unknown]
import() ./chat-module ./chat-worker.js 7:27-50
import() ./chat-module ./chat-worker.js 11:31-54
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -916,5 +916,5 @@ chunk (runtime: 1fad8bf8de78b0a77bfd) 936.js 152 bytes [rendered]
[all exports used]
import() ./chat-module ./chat-worker.js 7:27-50
import() ./chat-module ./chat-worker.js 11:31-54
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -100,7 +100,7 @@ chunk (runtime: main) output.js (main) 453 bytes [entry] [rendered]
[all exports used]
entry ./example.js main
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -114,5 +114,5 @@ chunk (runtime: main) output.js (main) 453 bytes [entry] [rendered]
[all exports used]
entry ./example.js main
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -145,7 +145,7 @@ mobile:
./example.js 94 bytes [built] [code generated]
[used exports unknown]
entry ./example main
mobile (webpack 5.99.7) compiled successfully
mobile (webpack X.X.X) compiled successfully
desktop:
asset desktop.js 262 bytes [emitted] (name: main)
@ -154,7 +154,7 @@ desktop:
./example.js 94 bytes [built] [code generated]
[used exports unknown]
entry ./example main
desktop (webpack 5.99.7) compiled successfully
desktop (webpack X.X.X) compiled successfully
```
## Production mode
@ -168,7 +168,7 @@ mobile:
./example.js 94 bytes [built] [code generated]
[no exports used]
entry ./example main
mobile (webpack 5.99.7) compiled successfully
mobile (webpack X.X.X) compiled successfully
desktop:
asset desktop.js 37 bytes [emitted] [minimized] (name: main)
@ -177,5 +177,5 @@ desktop:
./example.js 94 bytes [built] [code generated]
[no exports used]
entry ./example main
desktop (webpack 5.99.7) compiled successfully
desktop (webpack X.X.X) compiled successfully
```

View File

@ -206,7 +206,7 @@ chunk (runtime: beta) MyLibrary.beta.js (beta) 24 bytes [entry] [rendered]
cjs self exports reference ./beta.js 1:0-14
entry ./beta beta
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -228,5 +228,5 @@ chunk (runtime: alpha) MyLibrary.alpha.js (alpha) 25 bytes [entry] [rendered]
cjs self exports reference ./alpha.js 1:0-14
entry ./alpha alpha
used as library export
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -715,7 +715,7 @@ chunk (runtime: pageA, pageB) shared_js.js 88 bytes [rendered]
cjs require ./shared ./pageB.js 3:14-33
amd require ./shared ./pageA.js 2:0-4:2
cjs self exports reference ./shared.js 2:0-14
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -758,5 +758,5 @@ chunk (runtime: pageA, pageB) shared_js.js 88 bytes [rendered]
cjs require ./shared ./pageB.js 3:14-33
amd require ./shared ./pageA.js 2:0-4:2
cjs self exports reference ./shared.js 2:0-14
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -399,7 +399,7 @@ chunk (runtime: main) node_modules_b_js-node_modules_d_js.output.js 22 bytes [re
[used exports unknown]
cjs require d ./example.js 10:9-21
cjs require d ./example.js 19:9-21
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -442,5 +442,5 @@ chunk (runtime: main) node_modules_b_js-node_modules_d_js.output.js 22 bytes [re
[used exports unknown]
cjs require d ./example.js 10:9-21
cjs require d ./example.js 19:9-21
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -0,0 +1,76 @@
This example illustrates how to use [Node.js addons](https://nodejs.org/api/addons.html).
# example.js
```javascript
import { dlopen } from 'node:process';
import { fileURLToPath } from 'node:url';
const file = new URL("./file.node", import.meta.url);
const myModule = { exports: {} };
try {
dlopen(myModule, fileURLToPath(file));
} catch (err) {
console.log(err)
// Handling errors
}
console.log(myModule.exports.hello());
// Outputs: world
```
# webpack.config.js
```javascript
module.exports = {
// mode: "development" || "production",
target: "node",
output: {
// We strong recommend use `publicPath: 'auto'` or do not set `publicPath` at all to generate relative URLs
// publicPath: 'auto'
},
module: {
rules: [
{
test: /\.node$/,
type: "asset/resource"
}
]
}
};
```
# Info
## Unoptimized
```
asset 6cf1cf4222a82ec560f4.node 16.5 KiB [emitted] [immutable] [from: file.node] (auxiliary name: main)
asset output.js 6.27 KiB [emitted] (name: main)
chunk (runtime: main) output.js (main) 457 bytes (javascript) 16.5 KiB (asset) 1.26 KiB (runtime) [entry] [rendered]
> ./example.js main
runtime modules 1.26 KiB 6 modules
dependent modules 16.5 KiB (asset) 126 bytes (javascript) [dependent] 3 modules
./example.js 331 bytes [built] [code generated]
[no exports]
[used exports unknown]
entry ./example.js main
webpack X.X.X compiled successfully
```
## Production mode
```
asset 6cf1cf4222a82ec560f4.node 16.5 KiB [emitted] [immutable] [from: file.node] (auxiliary name: main)
asset output.js 510 bytes [emitted] [minimized] (name: main)
chunk (runtime: main) output.js (main) 16.5 KiB (asset) 457 bytes (javascript) 440 bytes (runtime) [entry] [rendered]
> ./example.js main
runtime modules 440 bytes 3 modules
dependent modules 16.5 KiB (asset) 42 bytes (javascript) [dependent] 1 module
./example.js + 2 modules 415 bytes [not cacheable] [built] [code generated]
[no exports]
[no exports used]
entry ./example.js main
webpack X.X.X compiled successfully
```

View File

@ -0,0 +1,8 @@
{
"targets": [
{
"target_name": "file",
"sources": [ "file.cc" ]
}
]
}

View File

@ -0,0 +1,25 @@
global.NO_PUBLIC_PATH = true;
const cp = require("child_process");
const path = require("path");
const fs = require("fs");
cp.exec(`node-gyp --target=${process.version} configure build`, (error, stdout, stderr) => {
if (stderr) {
console.log(stderr);
}
if (error !== null) {
console.log(error);
}
fs.copyFile(path.resolve(__dirname, "./build/Release/file.node"), path.resolve(__dirname, './file.node'), (err) => {
if (err) {
console.log(err);
}
require("../build-common");
});
});

View File

@ -0,0 +1,15 @@
import { dlopen } from 'node:process';
import { fileURLToPath } from 'node:url';
const file = new URL("./file.node", import.meta.url);
const myModule = { exports: {} };
try {
dlopen(myModule, fileURLToPath(file));
} catch (err) {
console.log(err)
// Handling errors
}
console.log(myModule.exports.hello());
// Outputs: world

View File

@ -0,0 +1,21 @@
// Include uv.h and v8.h ahead of node.h to verify that node.h doesn't need to
// be included first. Disable clang-format as it will sort the include lists.
// clang-format off
#include <uv.h>
#include <v8.h>
#include <node.h>
// clang-format on
static void Method(const v8::FunctionCallbackInfo<v8::Value>& args) {
v8::Isolate* isolate = args.GetIsolate();
args.GetReturnValue().Set(
v8::String::NewFromUtf8(isolate, "world").ToLocalChecked());
}
static void InitModule(v8::Local<v8::Object> exports,
v8::Local<v8::Value> module,
v8::Local<v8::Context> context) {
NODE_SET_METHOD(exports, "hello", Method);
}
NODE_MODULE(NODE_GYP_MODULE_NAME, InitModule)

BIN
examples/nodejs-addons/file.node Executable file

Binary file not shown.

View File

@ -0,0 +1,27 @@
This example illustrates how to use [Node.js addons](https://nodejs.org/api/addons.html).
# example.js
```javascript
_{{example.js}}_
```
# webpack.config.js
```javascript
_{{webpack.config.js}}_
```
# Info
## Unoptimized
```
_{{stdout}}_
```
## Production mode
```
_{{production:stdout}}_
```

View File

@ -0,0 +1,16 @@
module.exports = {
// mode: "development" || "production",
target: "node",
output: {
// We strong recommend use `publicPath: 'auto'` or do not set `publicPath` at all to generate relative URLs
// publicPath: 'auto'
},
module: {
rules: [
{
test: /\.node$/,
type: "asset/resource"
}
]
}
};

View File

@ -59,7 +59,7 @@ asset output.js 3.56 MiB [emitted] (name: main)
chunk (runtime: main) output.js (main) 2.21 MiB (javascript) 1.29 KiB (runtime) [entry]
> ./example.js main
cached modules 2.21 MiB (javascript) 1.29 KiB (runtime) [cached] 1491 modules
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -84,5 +84,5 @@ WARNING in webpack performance recommendations:
You can limit the size of your bundles by using import() or require.ensure to lazy load some parts of your application.
For more info visit https://webpack.js.org/guides/code-splitting/
webpack 5.99.7 compiled with 3 warnings
webpack X.X.X compiled with 3 warnings
```

View File

@ -227,7 +227,7 @@ chunk (runtime: main) pages_Login_js.output.js 500 bytes [rendered]
[exports: default]
import() context element ./Login ./pages/ lazy ^\.\/.*$ namespace object ./Login
import() context element ./Login.js ./pages/ lazy ^\.\/.*$ namespace object ./Login.js
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -259,5 +259,5 @@ chunk (runtime: main) pages_Login_js.output.js 500 bytes [rendered]
[exports: default]
import() context element ./Login ./pages/ lazy ^\.\/.*$ namespace object ./Login
import() context element ./Login.js ./pages/ lazy ^\.\/.*$ namespace object ./Login.js
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -183,7 +183,7 @@ chunk (runtime: main) output.js (main) 603 bytes (javascript) 88 bytes (runtime)
./example.js 146 bytes [built] [code generated]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -197,7 +197,7 @@ chunk (runtime: main) output.js (main) 603 bytes (javascript) 88 bytes (runtime)
./example.js 146 bytes [built] [code generated]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
# Code Splitting

View File

@ -128,7 +128,7 @@ chunk (runtime: main) output.js (main) 313 bytes [entry] [rendered]
./example.js 282 bytes [built] [code generated]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -141,5 +141,5 @@ chunk (runtime: main) output.js (main) 313 bytes [entry] [rendered]
./example.js 282 bytes [built] [code generated]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -523,7 +523,7 @@ chunk (runtime: main) output.js (main) 367 bytes (javascript) 5.51 KiB (runtime)
[no exports]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -545,5 +545,5 @@ chunk (runtime: main) output.js (main) 367 bytes (javascript) 5.51 KiB (runtime)
[no exports]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -291,7 +291,7 @@ chunk (runtime: main) output.js (main) 354 bytes (javascript) 670 bytes (runtime
[no exports]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -304,5 +304,5 @@ chunk (runtime: main) output.js (main) 332 bytes [entry] [rendered]
[no exports]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -338,7 +338,7 @@ chunk (runtime: runtime~bundle) ./bundle-eval.js (bundle) 256 bytes [initial] [r
chunk (runtime: runtime~bundle) ./runtime~bundle-eval.js (runtime~bundle) 2.45 KiB [entry] [rendered]
> coffee-loader!./example.coffee bundle
runtime modules 2.45 KiB 3 modules
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
asset ./runtime~bundle-eval-cheap-source-map.js 5.45 KiB [emitted] (name: runtime~bundle)
asset ./bundle-eval-cheap-source-map.js 2.2 KiB [emitted] (name: bundle)
@ -351,7 +351,7 @@ chunk (runtime: runtime~bundle) ./bundle-eval-cheap-source-map.js (bundle) 256 b
chunk (runtime: runtime~bundle) ./runtime~bundle-eval-cheap-source-map.js (runtime~bundle) 2.45 KiB [entry] [rendered]
> coffee-loader!./example.coffee bundle
runtime modules 2.45 KiB 3 modules
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
asset ./runtime~bundle-eval-cheap-module-source-map.js 5.45 KiB [emitted] (name: runtime~bundle)
asset ./bundle-eval-cheap-module-source-map.js 2.33 KiB [emitted] (name: bundle)
@ -364,7 +364,7 @@ chunk (runtime: runtime~bundle) ./bundle-eval-cheap-module-source-map.js (bundle
chunk (runtime: runtime~bundle) ./runtime~bundle-eval-cheap-module-source-map.js (runtime~bundle) 2.45 KiB [entry] [rendered]
> coffee-loader!./example.coffee bundle
runtime modules 2.45 KiB 3 modules
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
asset ./runtime~bundle-eval-source-map.js 5.45 KiB [emitted] (name: runtime~bundle)
asset ./bundle-eval-source-map.js 2.33 KiB [emitted] (name: bundle)
@ -377,7 +377,7 @@ chunk (runtime: runtime~bundle) ./bundle-eval-source-map.js (bundle) 256 bytes [
chunk (runtime: runtime~bundle) ./runtime~bundle-eval-source-map.js (runtime~bundle) 2.45 KiB [entry] [rendered]
> coffee-loader!./example.coffee bundle
runtime modules 2.45 KiB 3 modules
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
asset ./runtime~bundle-cheap-source-map.js 4.97 KiB [emitted] (name: runtime~bundle) 1 related asset
asset ./bundle-cheap-source-map.js 938 bytes [emitted] (name: bundle) 1 related asset
@ -390,7 +390,7 @@ chunk (runtime: runtime~bundle) ./bundle-cheap-source-map.js (bundle) 256 bytes
chunk (runtime: runtime~bundle) ./runtime~bundle-cheap-source-map.js (runtime~bundle) 2.45 KiB [entry] [rendered]
> coffee-loader!./example.coffee bundle
runtime modules 2.45 KiB 3 modules
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
asset ./runtime~bundle-cheap-module-source-map.js 4.97 KiB [emitted] (name: runtime~bundle) 1 related asset
asset ./bundle-cheap-module-source-map.js 945 bytes [emitted] (name: bundle) 1 related asset
@ -403,7 +403,7 @@ chunk (runtime: runtime~bundle) ./bundle-cheap-module-source-map.js (bundle) 256
chunk (runtime: runtime~bundle) ./runtime~bundle-cheap-module-source-map.js (runtime~bundle) 2.45 KiB [entry] [rendered]
> coffee-loader!./example.coffee bundle
runtime modules 2.45 KiB 3 modules
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
asset ./runtime~bundle-inline-cheap-source-map.js 10.7 KiB [emitted] (name: runtime~bundle)
asset ./bundle-inline-cheap-source-map.js 1.62 KiB [emitted] (name: bundle)
@ -416,7 +416,7 @@ chunk (runtime: runtime~bundle) ./bundle-inline-cheap-source-map.js (bundle) 256
chunk (runtime: runtime~bundle) ./runtime~bundle-inline-cheap-source-map.js (runtime~bundle) 2.45 KiB [entry] [rendered]
> coffee-loader!./example.coffee bundle
runtime modules 2.45 KiB 3 modules
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
asset ./runtime~bundle-inline-cheap-module-source-map.js 10.8 KiB [emitted] (name: runtime~bundle)
asset ./bundle-inline-cheap-module-source-map.js 1.51 KiB [emitted] (name: bundle)
@ -429,7 +429,7 @@ chunk (runtime: runtime~bundle) ./bundle-inline-cheap-module-source-map.js (bund
chunk (runtime: runtime~bundle) ./runtime~bundle-inline-cheap-module-source-map.js (runtime~bundle) 2.45 KiB [entry] [rendered]
> coffee-loader!./example.coffee bundle
runtime modules 2.45 KiB 3 modules
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
asset ./runtime~bundle-source-map.js 4.96 KiB [emitted] (name: runtime~bundle) 1 related asset
asset ./bundle-source-map.js 932 bytes [emitted] (name: bundle) 1 related asset
@ -442,7 +442,7 @@ chunk (runtime: runtime~bundle) ./bundle-source-map.js (bundle) 256 bytes [initi
chunk (runtime: runtime~bundle) ./runtime~bundle-source-map.js (runtime~bundle) 2.45 KiB [entry] [rendered]
> coffee-loader!./example.coffee bundle
runtime modules 2.45 KiB 3 modules
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
asset ./runtime~bundle-inline-source-map.js 10.7 KiB [emitted] (name: runtime~bundle)
asset ./bundle-inline-source-map.js 1.64 KiB [emitted] (name: bundle)
@ -455,7 +455,7 @@ chunk (runtime: runtime~bundle) ./bundle-inline-source-map.js (bundle) 256 bytes
chunk (runtime: runtime~bundle) ./runtime~bundle-inline-source-map.js (runtime~bundle) 2.45 KiB [entry] [rendered]
> coffee-loader!./example.coffee bundle
runtime modules 2.45 KiB 3 modules
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
asset ./runtime~bundle-hidden-source-map.js 4.91 KiB [emitted] (name: runtime~bundle) 1 related asset
asset ./bundle-hidden-source-map.js 886 bytes [emitted] (name: bundle) 1 related asset
@ -468,7 +468,7 @@ chunk (runtime: runtime~bundle) ./bundle-hidden-source-map.js (bundle) 256 bytes
chunk (runtime: runtime~bundle) ./runtime~bundle-hidden-source-map.js (runtime~bundle) 2.45 KiB [entry] [rendered]
> coffee-loader!./example.coffee bundle
runtime modules 2.45 KiB 3 modules
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
asset ./runtime~bundle-nosources-source-map.js 4.97 KiB [emitted] (name: runtime~bundle) 1 related asset
asset ./bundle-nosources-source-map.js 942 bytes [emitted] (name: bundle) 1 related asset
@ -481,5 +481,5 @@ chunk (runtime: runtime~bundle) ./bundle-nosources-source-map.js (bundle) 256 by
chunk (runtime: runtime~bundle) ./runtime~bundle-nosources-source-map.js (runtime~bundle) 2.45 KiB [entry] [rendered]
> coffee-loader!./example.coffee bundle
runtime modules 2.45 KiB 3 modules
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -42,41 +42,41 @@ console.log("Hello World!");
## Production mode
```
PublicPath: dist/
asset output.js 28 bytes {792} [emitted] [minimized] (name: main)
Entrypoint main 28 bytes = output.js
chunk {792} (runtime: main) output.js (main) 29 bytes [entry] [rendered]
> ./example.js  main
./example.js [695] 29 bytes {792} [depth 0] [built] [code generated]
[no exports used]
Statement (ExpressionStatement) with side effects in source code at 1:0-28
ModuleConcatenation bailout: Module is not an ECMAScript module
PublicPath: dist/
asset output.js 28 bytes {792} [emitted] [minimized] (name: main)
Entrypoint main 28 bytes = output.js
chunk {792} (runtime: main) output.js (main) 29 bytes [entry] [rendered]
> ./example.js main
./example.js [695] 29 bytes {792} [depth 0] [built] [code generated]
[no exports used]
Statement (ExpressionStatement) with side effects in source code at 1:0-28
ModuleConcatenation bailout: Module is not an ECMAScript module
LOG from webpack.Compilation
1 modules hashed, 0 from cache (1 variants per module in average)
100% code generated (1 generated, 0 from cache)
LOG from webpack.Compilation
1 modules hashed, 0 from cache (1 variants per module in average)
100% code generated (1 generated, 0 from cache)
+ 24 hidden lines
LOG from webpack.FlagDependencyExportsPlugin
0% of exports of modules have been determined (1 no declared exports, 0 not cached, 0 flagged uncacheable, 0 from cache, 0 from mem cache, 0 additional calculations due to dependencies)
LOG from webpack.FlagDependencyExportsPlugin
0% of exports of modules have been determined (1 no declared exports, 0 not cached, 0 flagged uncacheable, 0 from cache, 0 from mem cache, 0 additional calculations due to dependencies)
+ 3 hidden lines
LOG from webpack.buildChunkGraph
2 queue items processed (1 blocks)
0 chunk groups connected
0 chunk groups processed for merging (0 module sets, 0 forked, 0 + 0 modules forked, 0 + 0 modules merged into fork, 0 resulting modules)
0 chunk group info updated (0 already connected chunk groups reconnected)
LOG from webpack.buildChunkGraph
2 queue items processed (1 blocks)
0 chunk groups connected
0 chunk groups processed for merging (0 module sets, 0 forked, 0 + 0 modules forked, 0 + 0 modules merged into fork, 0 resulting modules)
0 chunk group info updated (0 already connected chunk groups reconnected)
+ 5 hidden lines
LOG from webpack.FileSystemInfo
1 new snapshots created
0% root snapshot uncached (0 / 0)
0% children snapshot uncached (0 / 0)
0 entries tested
File info in cache: 1 timestamps 1 hashes 1 timestamp hash combinations
File timestamp hash combination snapshot optimization: 0% (0/1) entries shared via 0 shared snapshots (0 times referenced)
Directory info in cache: 0 timestamps 0 hashes 0 timestamp hash combinations
Managed items info in cache: 0 items
LOG from webpack.FileSystemInfo
1 new snapshots created
0% root snapshot uncached (0 / 0)
0% children snapshot uncached (0 / 0)
0 entries tested
File info in cache: 1 timestamps 1 hashes 1 timestamp hash combinations
File timestamp hash combination snapshot optimization: 0% (0/1) entries shared via 0 shared snapshots (0 times referenced)
Directory info in cache: 0 timestamps 0 hashes 0 timestamp hash combinations
Managed items info in cache: 0 items
2025-04-25 12:08:19: webpack 5.99.7 compiled successfully (922245dc37adc36977b5)
XXXX-XX-XX XXXX:XX:XX: webpack X.X.X compiled successfully (922245dc37adc36977b5)
```

View File

@ -1,4 +1,4 @@
global.NO_REASONS = true;
global.NO_STATS_OPTIONS = true;
global.STATS_COLORS = true;
global.STATS_COLORS = false;
require("../build-common");

View File

@ -44,5 +44,5 @@ console.log("Hello World!");
```
1 asset
1 module
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -1,4 +1,4 @@
global.NO_REASONS = true;
global.NO_STATS_OPTIONS = true;
global.STATS_COLORS = true;
global.STATS_COLORS = false;
require("../build-common");

View File

@ -1,4 +1,4 @@
global.NO_REASONS = true;
global.NO_STATS_OPTIONS = true;
global.STATS_COLORS = true;
global.STATS_COLORS = false;
require("../build-common");

View File

@ -42,7 +42,7 @@ console.log("Hello World!");
## Production mode
```
asset output.js 28 bytes [emitted] [minimized] (name: main)
./example.js 29 bytes [built] [code generated]
webpack 5.99.7 compiled successfully
asset output.js 28 bytes [emitted] [minimized] (name: main)
./example.js 29 bytes [built] [code generated]
webpack X.X.X compiled successfully
```

View File

@ -1,4 +1,4 @@
global.NO_REASONS = true;
global.NO_STATS_OPTIONS = true;
global.STATS_COLORS = true;
global.STATS_COLORS = false;
require("../build-common");

View File

@ -42,5 +42,5 @@ console.log("Hello World!");
## Production mode
```
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -1,4 +1,4 @@
global.NO_REASONS = true;
global.NO_STATS_OPTIONS = true;
global.STATS_COLORS = true;
global.STATS_COLORS = false;
require("../build-common");

View File

@ -598,7 +598,7 @@ chunk (runtime: main) output.js (main) 1.19 KiB (javascript) 7.56 KiB (runtime)
[no exports]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -621,5 +621,5 @@ chunk (runtime: main) output.js (main) 1.19 KiB (javascript) 7.56 KiB (runtime)
[no exports]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -315,7 +315,7 @@ chunk (runtime: vendor2) vendor2.js (vendor2) 77 bytes [entry] [rendered]
cjs require ./vendor2 ./pageA.js 3:0-20
cjs self exports reference ./vendor2.js 1:0-14
entry ./vendor2 vendor2
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -361,5 +361,5 @@ chunk (runtime: pageC) pageC.js (pageC) 25 bytes [entry] [rendered]
[used exports unknown]
cjs self exports reference ./pageC.js 1:0-14
entry ./pageC pageC
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -145,7 +145,7 @@ chunk (runtime: main) output.js (main) 696 bytes [entry] [rendered]
./example.js 33 bytes [built] [code generated]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -158,5 +158,5 @@ chunk (runtime: main) output.js (main) 696 bytes [entry] [rendered]
./example.js 33 bytes [built] [code generated]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -378,7 +378,7 @@ chunk (runtime: main) output.js (main) 3.03 KiB (javascript) 14.8 KiB (webassemb
[no exports]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -394,5 +394,5 @@ chunk (runtime: main) output.js (main) 3.03 KiB (javascript) 14.8 KiB (webassemb
[no exports]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -422,7 +422,7 @@ chunk (runtime: main) output.js (main) 696 bytes (javascript) 139 bytes (webasse
[no exports]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -438,5 +438,5 @@ chunk (runtime: main) output.js (main) 696 bytes (javascript) 139 bytes (webasse
[no exports]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -387,7 +387,7 @@ chunk (runtime: main) output.js (main) 1.27 KiB (javascript) 170 bytes (webassem
[no exports]
[used exports unknown]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -405,5 +405,5 @@ chunk (runtime: main) output.js (main) 1.27 KiB (javascript) 170 bytes (webassem
[no exports]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -753,7 +753,7 @@ chunk (runtime: main) main.js (main) 2.25 KiB (javascript) 5.41 KiB (runtime) [e
./example.js 2.25 KiB [built] [code generated]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```
## Production mode
@ -789,5 +789,5 @@ chunk (runtime: main) main.js (main) 2.25 KiB (javascript) 5.41 KiB (runtime) [e
./example.js 2.25 KiB [built] [code generated]
[no exports used]
entry ./example.js main
webpack 5.99.7 compiled successfully
webpack X.X.X compiled successfully
```

View File

@ -85,6 +85,7 @@
"memfs": "^4.14.0",
"mini-css-extract-plugin": "^2.9.0",
"mini-svg-data-uri": "^1.2.3",
"node-gyp": "^11.2.0",
"nyc": "^17.1.0",
"open-cli": "^8.0.0",
"prettier": "^3.5.1",

455
yarn.lock
View File

@ -853,6 +853,25 @@
resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.4.2.tgz#1860473de7dfa1546767448f333db80cb0ff2161"
integrity sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==
"@isaacs/cliui@^8.0.2":
version "8.0.2"
resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550"
integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==
dependencies:
string-width "^5.1.2"
string-width-cjs "npm:string-width@^4.2.0"
strip-ansi "^7.0.1"
strip-ansi-cjs "npm:strip-ansi@^6.0.1"
wrap-ansi "^8.1.0"
wrap-ansi-cjs "npm:wrap-ansi@^7.0.0"
"@isaacs/fs-minipass@^4.0.0":
version "4.0.1"
resolved "https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz#2d59ae3ab4b38fb4270bfa23d30f8e2e86c7fe32"
integrity sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==
dependencies:
minipass "^7.0.4"
"@istanbuljs/load-nyc-config@^1.0.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced"
@ -1159,6 +1178,29 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
"@npmcli/agent@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-3.0.0.tgz#1685b1fbd4a1b7bb4f930cbb68ce801edfe7aa44"
integrity sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==
dependencies:
agent-base "^7.1.0"
http-proxy-agent "^7.0.0"
https-proxy-agent "^7.0.1"
lru-cache "^10.0.1"
socks-proxy-agent "^8.0.3"
"@npmcli/fs@^4.0.0":
version "4.0.0"
resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-4.0.0.tgz#a1eb1aeddefd2a4a347eca0fab30bc62c0e1c0f2"
integrity sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==
dependencies:
semver "^7.3.5"
"@pkgjs/parseargs@^0.11.0":
version "0.11.0"
resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
"@pkgr/core@^0.1.0":
version "0.1.2"
resolved "https://registry.yarnpkg.com/@pkgr/core/-/core-0.1.2.tgz#1cf95080bb7072fafaa3cb13b442fab4695c3893"
@ -1537,6 +1579,11 @@ abbrev@1.0.x:
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135"
integrity sha512-LEyx4aLEC3x6T0UguF6YILf+ntvmOaWsVfENmIW0E9H09vKlLDGelMjjSm0jkDHALj8A8quZ/HapKNigzwge+Q==
abbrev@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz#8ac8b3b5024d31464fe2a5feeea9f4536bf44025"
integrity sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==
abort-controller@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392"
@ -1559,6 +1606,11 @@ acorn@^8.14.0, acorn@^8.8.2:
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.1.tgz#721d5dc10f7d5b5609a891773d47731796935dfb"
integrity sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==
agent-base@^7.1.0, agent-base@^7.1.2:
version "7.1.3"
resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.3.tgz#29435eb821bc4194633a5b89e5bc4703bafc25a1"
integrity sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==
aggregate-error@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
@ -1647,7 +1699,7 @@ ansi-styles@^5.0.0:
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b"
integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==
ansi-styles@^6.0.0, ansi-styles@^6.2.1:
ansi-styles@^6.0.0, ansi-styles@^6.1.0, ansi-styles@^6.2.1:
version "6.2.1"
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5"
integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
@ -1898,6 +1950,24 @@ bundle-name@^4.1.0:
dependencies:
run-applescript "^7.0.0"
cacache@^19.0.1:
version "19.0.1"
resolved "https://registry.yarnpkg.com/cacache/-/cacache-19.0.1.tgz#3370cc28a758434c85c2585008bd5bdcff17d6cd"
integrity sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==
dependencies:
"@npmcli/fs" "^4.0.0"
fs-minipass "^3.0.0"
glob "^10.2.2"
lru-cache "^10.0.1"
minipass "^7.0.3"
minipass-collect "^2.0.1"
minipass-flush "^1.0.5"
minipass-pipeline "^1.2.4"
p-map "^7.0.2"
ssri "^12.0.0"
tar "^7.4.3"
unique-filename "^4.0.0"
caching-transform@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-4.0.0.tgz#00d297a4206d71e2163c39eaffa8157ac0651f0f"
@ -1988,6 +2058,11 @@ chokidar@^4.0.1:
dependencies:
readdirp "^4.0.1"
chownr@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz#9855e64ecd240a9cc4267ce8a4aa5d24a1da15e4"
integrity sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==
chrome-trace-event@^1.0.2:
version "1.0.4"
resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz#05bffd7ff928465093314708c93bdfa9bd1f0f5b"
@ -2406,7 +2481,7 @@ date-fns@^4.0.0:
resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-4.1.0.tgz#64b3d83fff5aa80438f5b1a633c2e83b8a1c2d14"
integrity sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==
debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.3.5, debug@^4.3.6, debug@^4.4.0:
debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.3.5, debug@^4.3.6, debug@^4.4.0:
version "4.4.0"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a"
integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==
@ -2482,6 +2557,11 @@ dunder-proto@^1.0.1:
es-errors "^1.3.0"
gopd "^1.2.0"
eastasianwidth@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb"
integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
electron-to-chromium@^1.5.73:
version "1.5.132"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.132.tgz#081b8086d7cecc58732f7cc1f1c19306c5510c5f"
@ -2502,11 +2582,23 @@ emoji-regex@^8.0.0:
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
emoji-regex@^9.2.2:
version "9.2.2"
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
emojis-list@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
encoding@^0.1.13:
version "0.1.13"
resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9"
integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==
dependencies:
iconv-lite "^0.6.2"
enhanced-resolve@^5.0.0, enhanced-resolve@^5.17.1:
version "5.18.1"
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz#728ab082f8b7b6836de51f1637aab5d3b9568faf"
@ -2515,6 +2607,11 @@ enhanced-resolve@^5.0.0, enhanced-resolve@^5.17.1:
graceful-fs "^4.2.4"
tapable "^2.2.0"
env-paths@^2.2.0:
version "2.2.1"
resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2"
integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==
env-paths@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-3.0.0.tgz#2f1e89c2f6dbd3408e1b1711dd82d62e317f58da"
@ -2530,6 +2627,11 @@ environment@^1.0.0:
resolved "https://registry.yarnpkg.com/environment/-/environment-1.1.0.tgz#8e86c66b180f363c7ab311787e0259665f45a9f1"
integrity sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==
err-code@^2.0.2:
version "2.0.3"
resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9"
integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==
errno@^0.1.1:
version "0.1.8"
resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f"
@ -2934,6 +3036,11 @@ expect@^29.0.0, expect@^29.7.0:
jest-message-util "^29.7.0"
jest-util "^29.7.0"
exponential-backoff@^3.1.1:
version "3.1.2"
resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.2.tgz#a8f26adb96bf78e8cd8ad1037928d5e5c0679d91"
integrity sha512-8QxYTVXUkuy7fIIoitQkPwGonB8F3Zj8eEO8Sqg9Zv/bkI7RJAzowee4gr81Hak/dUTpA2Z7VfQgoijjPNlUZA==
ext@^1.7.0:
version "1.7.0"
resolved "https://registry.yarnpkg.com/ext/-/ext-1.7.0.tgz#0ea4383c0103d60e70be99e9a7f11027a33c4f5f"
@ -3108,7 +3215,7 @@ foreground-child@^2.0.0:
cross-spawn "^7.0.0"
signal-exit "^3.0.2"
foreground-child@^3.3.0:
foreground-child@^3.1.0, foreground-child@^3.3.0:
version "3.3.1"
resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz#32e8e9ed1b68a3497befb9ac2b6adf92a638576f"
integrity sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==
@ -3148,6 +3255,13 @@ fs-extra@^10.0.0:
jsonfile "^6.0.1"
universalify "^2.0.0"
fs-minipass@^3.0.0:
version "3.0.3"
resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54"
integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==
dependencies:
minipass "^7.0.3"
fs-monkey@^1.0.4:
version "1.0.6"
resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.6.tgz#8ead082953e88d992cf3ff844faa907b26756da2"
@ -3258,6 +3372,18 @@ glob-to-regexp@^0.4.1:
resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
glob@^10.2.2:
version "10.4.5"
resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956"
integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==
dependencies:
foreground-child "^3.1.0"
jackspeak "^3.1.2"
minimatch "^9.0.4"
minipass "^7.1.2"
package-json-from-dist "^1.0.0"
path-scurry "^1.11.1"
glob@^5.0.15:
version "5.0.15"
resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1"
@ -3313,7 +3439,7 @@ gopd@^1.2.0:
resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1"
integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==
graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9:
version "4.2.11"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
@ -3382,6 +3508,27 @@ html-escaper@^2.0.0:
resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
http-cache-semantics@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a"
integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==
http-proxy-agent@^7.0.0:
version "7.0.2"
resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e"
integrity sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==
dependencies:
agent-base "^7.1.0"
debug "^4.3.4"
https-proxy-agent@^7.0.1:
version "7.0.6"
resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz#da8dfeac7da130b05c2ba4b59c9b6cd66611a6b9"
integrity sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==
dependencies:
agent-base "^7.1.2"
debug "4"
human-signals@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
@ -3402,7 +3549,7 @@ hyperdyperid@^1.2.0:
resolved "https://registry.yarnpkg.com/hyperdyperid/-/hyperdyperid-1.2.0.tgz#59668d323ada92228d2a869d3e474d5a33b69e6b"
integrity sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==
iconv-lite@^0.6.3:
iconv-lite@^0.6.2, iconv-lite@^0.6.3:
version "0.6.3"
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501"
integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
@ -3488,6 +3635,14 @@ interpret@^3.1.1:
resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4"
integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==
ip-address@^9.0.5:
version "9.0.5"
resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a"
integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==
dependencies:
jsbn "1.1.0"
sprintf-js "^1.1.3"
is-arrayish@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
@ -3625,6 +3780,11 @@ isexe@^2.0.0:
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
isexe@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz#4a407e2bd78ddfb14bea0c27c6f7072dde775f0d"
integrity sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==
isobject@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
@ -3722,6 +3882,15 @@ istanbul@^0.4.5:
which "^1.1.1"
wordwrap "^1.0.0"
jackspeak@^3.1.2:
version "3.4.3"
resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a"
integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==
dependencies:
"@isaacs/cliui" "^8.0.2"
optionalDependencies:
"@pkgjs/parseargs" "^0.11.0"
jest-changed-files@^29.7.0:
version "29.7.0"
resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.7.0.tgz#1c06d07e77c78e1585d020424dedc10d6e17ac3a"
@ -4124,6 +4293,11 @@ js-yaml@^4.1.0:
dependencies:
argparse "^2.0.1"
jsbn@1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040"
integrity sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==
jsdoc-type-pratt-parser@~4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.1.0.tgz#ff6b4a3f339c34a6c188cbf50a16087858d22113"
@ -4399,6 +4573,11 @@ long@^5.2.4:
resolved "https://registry.yarnpkg.com/long/-/long-5.3.1.tgz#9d4222d3213f38a5ec809674834e0f0ab21abe96"
integrity sha512-ka87Jz3gcx/I7Hal94xaN2tZEOPoUOEVftkQqZx2EeQRN7LGdfLlI3FvZ+7WDplm+vK2Urx9ULrvSowtdCieng==
lru-cache@^10.0.1, lru-cache@^10.2.0:
version "10.4.3"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119"
integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==
lru-cache@^5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
@ -4435,6 +4614,23 @@ make-dir@^4.0.0:
dependencies:
semver "^7.5.3"
make-fetch-happen@^14.0.3:
version "14.0.3"
resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz#d74c3ecb0028f08ab604011e0bc6baed483fcdcd"
integrity sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==
dependencies:
"@npmcli/agent" "^3.0.0"
cacache "^19.0.1"
http-cache-semantics "^4.1.1"
minipass "^7.0.2"
minipass-fetch "^4.0.0"
minipass-flush "^1.0.5"
minipass-pipeline "^1.2.4"
negotiator "^1.0.0"
proc-log "^5.0.0"
promise-retry "^2.0.1"
ssri "^12.0.0"
makeerror@1.0.12:
version "1.0.12"
resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a"
@ -4570,6 +4766,64 @@ minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6:
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
minipass-collect@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz#1621bc77e12258a12c60d34e2276ec5c20680863"
integrity sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==
dependencies:
minipass "^7.0.3"
minipass-fetch@^4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.1.tgz#f2d717d5a418ad0b1a7274f9b913515d3e78f9e5"
integrity sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ==
dependencies:
minipass "^7.0.3"
minipass-sized "^1.0.3"
minizlib "^3.0.1"
optionalDependencies:
encoding "^0.1.13"
minipass-flush@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373"
integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==
dependencies:
minipass "^3.0.0"
minipass-pipeline@^1.2.4:
version "1.2.4"
resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
dependencies:
minipass "^3.0.0"
minipass-sized@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70"
integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==
dependencies:
minipass "^3.0.0"
minipass@^3.0.0:
version "3.3.6"
resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a"
integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==
dependencies:
yallist "^4.0.0"
"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.2, minipass@^7.0.3, minipass@^7.0.4, minipass@^7.1.2:
version "7.1.2"
resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707"
integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==
minizlib@^3.0.1:
version "3.0.2"
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-3.0.2.tgz#f33d638eb279f664439aa38dc5f91607468cb574"
integrity sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==
dependencies:
minipass "^7.1.2"
mkdirp@0.5.x:
version "0.5.6"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6"
@ -4582,6 +4836,11 @@ mkdirp@^1.0.4:
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
mkdirp@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-3.0.1.tgz#e44e4c5607fb279c168241713cc6e0fea9adcb50"
integrity sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==
ms@^2.1.3:
version "2.1.3"
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
@ -4614,6 +4873,11 @@ needle@^3.1.0:
iconv-lite "^0.6.3"
sax "^1.2.4"
negotiator@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz#b6c91bb47172d69f93cfd7c357bbb529019b5f6a"
integrity sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==
neo-async@^2.6.2:
version "2.6.2"
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
@ -4629,6 +4893,22 @@ node-abort-controller@^3.0.1:
resolved "https://registry.yarnpkg.com/node-abort-controller/-/node-abort-controller-3.1.1.tgz#a94377e964a9a37ac3976d848cb5c765833b8548"
integrity sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==
node-gyp@^11.2.0:
version "11.2.0"
resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.2.0.tgz#fe2ee7f0511424d6ad70f7a0c88d7346f2fc6a6e"
integrity sha512-T0S1zqskVUSxcsSTkAsLc7xCycrRYmtDHadDinzocrThjyQCn5kMlEBSj6H4qDbgsIOSLmmlRIeb0lZXj+UArA==
dependencies:
env-paths "^2.2.0"
exponential-backoff "^3.1.1"
graceful-fs "^4.2.6"
make-fetch-happen "^14.0.3"
nopt "^8.0.0"
proc-log "^5.0.0"
semver "^7.3.5"
tar "^7.4.3"
tinyglobby "^0.2.12"
which "^5.0.0"
node-int64@^0.4.0:
version "0.4.0"
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
@ -4653,6 +4933,13 @@ nopt@3.x:
dependencies:
abbrev "1"
nopt@^8.0.0:
version "8.1.0"
resolved "https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz#b11d38caf0f8643ce885818518064127f602eae3"
integrity sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==
dependencies:
abbrev "^3.0.0"
normalize-path@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
@ -4818,6 +5105,11 @@ p-map@^3.0.0:
dependencies:
aggregate-error "^3.0.0"
p-map@^7.0.2:
version "7.0.3"
resolved "https://registry.yarnpkg.com/p-map/-/p-map-7.0.3.tgz#7ac210a2d36f81ec28b736134810f7ba4418cdb6"
integrity sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==
p-try@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
@ -4833,6 +5125,11 @@ package-hash@^4.0.0:
lodash.flattendeep "^4.4.0"
release-zalgo "^1.0.0"
package-json-from-dist@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505"
integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==
parent-module@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
@ -4895,6 +5192,14 @@ path-parse@^1.0.7:
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
path-scurry@^1.11.1:
version "1.11.1"
resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2"
integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==
dependencies:
lru-cache "^10.2.0"
minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
path-type@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
@ -5043,6 +5348,11 @@ pretty-format@^29.0.0, pretty-format@^29.5.0, pretty-format@^29.7.0:
ansi-styles "^5.0.0"
react-is "^18.0.0"
proc-log@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-5.0.0.tgz#e6c93cf37aef33f835c53485f314f50ea906a9d8"
integrity sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==
process-on-spawn@^1.0.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/process-on-spawn/-/process-on-spawn-1.1.0.tgz#9d5999ba87b3bf0a8acb05322d69f2f5aa4fb763"
@ -5055,6 +5365,14 @@ process@^0.11.10:
resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==
promise-retry@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22"
integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==
dependencies:
err-code "^2.0.2"
retry "^0.12.0"
promise@^7.0.1:
version "7.3.1"
resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
@ -5362,6 +5680,11 @@ restore-cursor@^5.0.0:
onetime "^7.0.0"
signal-exit "^4.1.0"
retry@^0.12.0:
version "0.12.0"
resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==
reusify@^1.0.4:
version "1.1.0"
resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz#0fe13b9522e1473f51b558ee796e08f11f9b489f"
@ -5533,6 +5856,28 @@ slice-ansi@^7.1.0:
ansi-styles "^6.2.1"
is-fullwidth-code-point "^5.0.0"
smart-buffer@^4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae"
integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==
socks-proxy-agent@^8.0.3:
version "8.0.5"
resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz#b9cdb4e7e998509d7659d689ce7697ac21645bee"
integrity sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==
dependencies:
agent-base "^7.1.2"
debug "^4.3.4"
socks "^2.8.3"
socks@^2.8.3:
version "2.8.4"
resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.4.tgz#07109755cdd4da03269bda4725baa061ab56d5cc"
integrity sha512-D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ==
dependencies:
ip-address "^9.0.5"
smart-buffer "^4.2.0"
source-map-js@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
@ -5601,11 +5946,23 @@ spdx-license-ids@^3.0.0:
resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz#6d6e980c9df2b6fc905343a3b2d702a6239536c3"
integrity sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==
sprintf-js@^1.1.3:
version "1.1.3"
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a"
integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==
sprintf-js@~1.0.2:
version "1.0.3"
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==
ssri@^12.0.0:
version "12.0.0"
resolved "https://registry.yarnpkg.com/ssri/-/ssri-12.0.0.tgz#bcb4258417c702472f8191981d3c8a771fee6832"
integrity sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==
dependencies:
minipass "^7.0.3"
stack-utils@^2.0.3:
version "2.0.6"
resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f"
@ -5631,6 +5988,15 @@ string-length@^4.0.1:
char-regex "^1.0.2"
strip-ansi "^6.0.0"
"string-width-cjs@npm:string-width@^4.2.0":
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
dependencies:
emoji-regex "^8.0.0"
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.1"
string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
@ -5640,6 +6006,15 @@ string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.1"
string-width@^5.0.1, string-width@^5.1.2:
version "5.1.2"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==
dependencies:
eastasianwidth "^0.2.0"
emoji-regex "^9.2.2"
strip-ansi "^7.0.1"
string-width@^7.0.0:
version "7.2.0"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-7.2.0.tgz#b5bb8e2165ce275d4d43476dd2700ad9091db6dc"
@ -5656,6 +6031,13 @@ string_decoder@^1.3.0:
dependencies:
safe-buffer "~5.2.0"
"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
dependencies:
ansi-regex "^5.0.1"
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
@ -5663,7 +6045,7 @@ strip-ansi@^6.0.0, strip-ansi@^6.0.1:
dependencies:
ansi-regex "^5.0.1"
strip-ansi@^7.1.0:
strip-ansi@^7.0.1, strip-ansi@^7.1.0:
version "7.1.0"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==
@ -5757,6 +6139,18 @@ tapable@^2.1.1, tapable@^2.2.0, tapable@^2.2.1:
resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0"
integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==
tar@^7.4.3:
version "7.4.3"
resolved "https://registry.yarnpkg.com/tar/-/tar-7.4.3.tgz#88bbe9286a3fcd900e94592cda7a22b192e80571"
integrity sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==
dependencies:
"@isaacs/fs-minipass" "^4.0.0"
chownr "^3.0.0"
minipass "^7.1.2"
minizlib "^3.0.1"
mkdirp "^3.0.1"
yallist "^5.0.0"
temp-dir@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-3.0.0.tgz#7f147b42ee41234cc6ba3138cd8e8aa2302acffa"
@ -5971,6 +6365,20 @@ undici-types@~6.21.0:
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb"
integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==
unique-filename@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-4.0.0.tgz#a06534d370e7c977a939cd1d11f7f0ab8f1fed13"
integrity sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==
dependencies:
unique-slug "^5.0.0"
unique-slug@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-5.0.0.tgz#ca72af03ad0dbab4dad8aa683f633878b1accda8"
integrity sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==
dependencies:
imurmurhash "^0.1.4"
unique-string@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-3.0.0.tgz#84a1c377aff5fd7a8bc6b55d8244b2bd90d75b9a"
@ -6125,6 +6533,13 @@ which@^2.0.1:
dependencies:
isexe "^2.0.0"
which@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/which/-/which-5.0.0.tgz#d93f2d93f79834d4363c7d0c23e00d07c466c8d6"
integrity sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==
dependencies:
isexe "^3.1.1"
wildcard@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67"
@ -6150,6 +6565,15 @@ wordwrap@^1.0.0:
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
dependencies:
ansi-styles "^4.0.0"
string-width "^4.1.0"
strip-ansi "^6.0.0"
wrap-ansi@^6.2.0:
version "6.2.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
@ -6168,6 +6592,15 @@ wrap-ansi@^7.0.0:
string-width "^4.1.0"
strip-ansi "^6.0.0"
wrap-ansi@^8.1.0:
version "8.1.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"
integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==
dependencies:
ansi-styles "^6.1.0"
string-width "^5.0.1"
strip-ansi "^7.0.1"
wrap-ansi@^9.0.0:
version "9.0.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.0.tgz#1a3dc8b70d85eeb8398ddfb1e4a02cd186e58b3e"
@ -6232,6 +6665,16 @@ yallist@^3.0.2:
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
yallist@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
yallist@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz#00e2de443639ed0d78fd87de0d27469fbcffb533"
integrity sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==
yaml@^2.7.0:
version "2.7.1"
resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.7.1.tgz#44a247d1b88523855679ac7fa7cda6ed7e135cf6"