@enact/cli 6.1.0 → 6.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/commands/pack.js +1 -1
- package/docs/building-apps.md +31 -4
- package/docs/serving-apps.md +1 -1
- package/docs/starting-a-new-app.md +1 -1
- package/npm-shrinkwrap.json +193 -153
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## 6.1.2 (March 13, 2024)
|
|
2
|
+
|
|
3
|
+
* Updated docs to cover the latest commands of `enact pack`.
|
|
4
|
+
|
|
5
|
+
## 6.1.1 (March 5, 2024)
|
|
6
|
+
|
|
7
|
+
* Updated dependencies.
|
|
8
|
+
|
|
1
9
|
## 6.1.0 (February 21, 2024)
|
|
2
10
|
|
|
3
11
|
* Removed `getCSSModuleLocalIdent` to fix unexpected behaviors in css-loader.
|
package/commands/pack.js
CHANGED
|
@@ -38,7 +38,7 @@ function displayHelp() {
|
|
|
38
38
|
console.log(' -i, --isomorphic Use isomorphic code layout');
|
|
39
39
|
console.log(' (includes prerendering)');
|
|
40
40
|
console.log(' -l, --locales Locales for isomorphic mode; one of:');
|
|
41
|
-
console.log(' <
|
|
41
|
+
console.log(' <comma-separated-values> Locale list');
|
|
42
42
|
console.log(' <JSON-filepath> - Read locales from JSON file');
|
|
43
43
|
console.log(' "none" - Disable locale-specific handling');
|
|
44
44
|
console.log(' "used" - Detect locales used within ./resources/');
|
package/docs/building-apps.md
CHANGED
|
@@ -8,14 +8,15 @@ order: 4
|
|
|
8
8
|
enact pack [options]
|
|
9
9
|
|
|
10
10
|
Options
|
|
11
|
+
-o, --output Specify an output directory
|
|
11
12
|
--content-hash Add a unique hash to output file names based on the content of an asset
|
|
13
|
+
-w, --watch Rebuild on file changes
|
|
12
14
|
-p, --production Build in production mode
|
|
13
15
|
-i, --isomorphic Use isomorphic code layout
|
|
14
16
|
(includes prerendering)
|
|
15
|
-
-w, --watch Rebuild on file changes
|
|
16
17
|
-l, --locales Locales for isomorphic mode; one of:
|
|
17
|
-
|
|
18
|
-
|
|
18
|
+
[comma-separated-values] Locale list
|
|
19
|
+
[JSON-filepath] - Read locales from JSON file
|
|
19
20
|
"none" - Disable locale-specific handling
|
|
20
21
|
"used" - Detect locales used within ./resources/
|
|
21
22
|
"tv" - Locales supported on webOS TV
|
|
@@ -23,14 +24,18 @@ order: 4
|
|
|
23
24
|
"all" - All locales that iLib supports
|
|
24
25
|
-s, --snapshot Generate V8 snapshot blob
|
|
25
26
|
(requires V8_MKSNAPSHOT set)
|
|
27
|
+
-m, --meta JSON to override package.json enact metadata
|
|
26
28
|
-c, --custom-skin Build with a custom skin
|
|
27
29
|
--stats Output bundle analysis file
|
|
30
|
+
--verbose Verbose log build details
|
|
31
|
+
-v, --version Display version information
|
|
32
|
+
-h, --help Display help information
|
|
28
33
|
|
|
29
34
|
```
|
|
30
35
|
Run within an Enact project's source code, the `enact pack` command (aliased as `npm run pack` or `npm run pack-p` for production) will process and bundle the js, css, and asset files into the `./dist` directory. An **index.html** file will be dynamically generated.
|
|
31
36
|
|
|
32
37
|
## Production Mode
|
|
33
|
-
By default, projects will build in development mode. When
|
|
38
|
+
By default, projects will build in development mode. When your code is ready for deployment you can build in production mode. Production mode will minify the source code and remove dead code, along with numerous other minor code optimization strategies.
|
|
34
39
|
|
|
35
40
|
## Browser Support & Polyfills
|
|
36
41
|
The Enact CLI is designed to be compatible with a wide array of browsers and devices. [Browserslist standard](https://github.com/browserslist/browserslist) is used to handle targeting, with Enact's defaults being:
|
|
@@ -249,3 +254,25 @@ Similar to the [`enact serve`](./serving-apps.md) command, the watcher will buil
|
|
|
249
254
|
|
|
250
255
|
## Stats Analysis
|
|
251
256
|
The Bundle analysis file option uses the popular [webpack-bundle-analyzer](https://github.com/webpack-contrib/webpack-bundle-analyzer) to create a visual representation of the project build to **stats.html**, showing the full module hierarchy arranged by output size. This can be very useful in determining where bloat is coming from or finding dependencies that may have been included by mistake.
|
|
257
|
+
|
|
258
|
+
## Override Metadata
|
|
259
|
+
The @enact/cli tool inspects the `enact` object in the project's package.json for [customization options](./starting-a-new-app.md#enact-project-settings).
|
|
260
|
+
You can use the `--meta` flag to input a JSON string that overrides the `enact` metadata in package.json.
|
|
261
|
+
|
|
262
|
+
Here's an example of how to use the `--meta` flag:
|
|
263
|
+
|
|
264
|
+
```bash
|
|
265
|
+
enact pack --meta='{"title":"myapp"}'
|
|
266
|
+
```
|
|
267
|
+
|
|
268
|
+
This command has the same effect as adding the following to your package.json:
|
|
269
|
+
|
|
270
|
+
```json
|
|
271
|
+
{
|
|
272
|
+
...
|
|
273
|
+
"enact": {
|
|
274
|
+
"title": "myapp"
|
|
275
|
+
}
|
|
276
|
+
...
|
|
277
|
+
}
|
|
278
|
+
```
|
package/docs/serving-apps.md
CHANGED
|
@@ -38,7 +38,7 @@ The @enact/cli tool will check the project's **package.json** looking for an opt
|
|
|
38
38
|
* `proxy` _[string]_ - Proxy target during project `serve` to be used within the [http-proxy-middleware](https://github.com/chimurai/http-proxy-middleware).
|
|
39
39
|
|
|
40
40
|
For example:
|
|
41
|
-
```
|
|
41
|
+
```json
|
|
42
42
|
{
|
|
43
43
|
...
|
|
44
44
|
"enact": {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enact/cli",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.2",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@enact/cli",
|
|
9
|
-
"version": "6.1.
|
|
9
|
+
"version": "6.1.2",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"dotenv": "^16.3.1",
|
|
31
31
|
"dotenv-expand": "^10.0.0",
|
|
32
32
|
"eslint": "^8.56.0",
|
|
33
|
-
"eslint-config-enact": "^4.2.
|
|
33
|
+
"eslint-config-enact": "^4.2.1",
|
|
34
34
|
"eslint-webpack-plugin": "^4.0.1",
|
|
35
35
|
"expose-loader": "^4.1.0",
|
|
36
36
|
"file-loader": "^6.2.0",
|
|
@@ -28737,20 +28737,20 @@
|
|
|
28737
28737
|
}
|
|
28738
28738
|
},
|
|
28739
28739
|
"node_modules/eslint-config-enact": {
|
|
28740
|
-
"version": "4.2.
|
|
28741
|
-
"resolved": "https://registry.npmjs.org/eslint-config-enact/-/eslint-config-enact-4.2.
|
|
28742
|
-
"integrity": "sha512-
|
|
28740
|
+
"version": "4.2.1",
|
|
28741
|
+
"resolved": "https://registry.npmjs.org/eslint-config-enact/-/eslint-config-enact-4.2.1.tgz",
|
|
28742
|
+
"integrity": "sha512-LPIf/4XeXwmn2LjBVEkVy33BjELcP9G2dlHjao25FJelZ4LgRRlF8/SVIrlUeL83f9iS5XnTu9l0W4u1NGr5Cw==",
|
|
28743
28743
|
"hasShrinkwrap": true,
|
|
28744
28744
|
"dependencies": {
|
|
28745
28745
|
"@babel/eslint-parser": "^7.23.3",
|
|
28746
|
-
"@babel/eslint-plugin": "^7.
|
|
28746
|
+
"@babel/eslint-plugin": "^7.23.5",
|
|
28747
28747
|
"@rushstack/eslint-patch": "^1.6.1",
|
|
28748
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
28749
|
-
"@typescript-eslint/parser": "^6.
|
|
28748
|
+
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
28749
|
+
"@typescript-eslint/parser": "^6.19.0",
|
|
28750
28750
|
"babel-preset-enact": "^0.1.6",
|
|
28751
|
-
"eslint": "^8.
|
|
28752
|
-
"eslint-plugin-enact": "^1.0.
|
|
28753
|
-
"eslint-plugin-jest": "^27.6.
|
|
28751
|
+
"eslint": "^8.56.0",
|
|
28752
|
+
"eslint-plugin-enact": "^1.0.7",
|
|
28753
|
+
"eslint-plugin-jest": "^27.6.3",
|
|
28754
28754
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
28755
28755
|
"eslint-plugin-react": "^7.33.2",
|
|
28756
28756
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
@@ -29327,15 +29327,15 @@
|
|
|
29327
29327
|
"integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A=="
|
|
29328
29328
|
},
|
|
29329
29329
|
"node_modules/eslint-config-enact/node_modules/@typescript-eslint/eslint-plugin": {
|
|
29330
|
-
"version": "6.
|
|
29331
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.
|
|
29332
|
-
"integrity": "sha512-
|
|
29330
|
+
"version": "6.19.0",
|
|
29331
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.19.0.tgz",
|
|
29332
|
+
"integrity": "sha512-DUCUkQNklCQYnrBSSikjVChdc84/vMPDQSgJTHBZ64G9bA9w0Crc0rd2diujKbTdp6w2J47qkeHQLoi0rpLCdg==",
|
|
29333
29333
|
"dependencies": {
|
|
29334
29334
|
"@eslint-community/regexpp": "^4.5.1",
|
|
29335
|
-
"@typescript-eslint/scope-manager": "6.
|
|
29336
|
-
"@typescript-eslint/type-utils": "6.
|
|
29337
|
-
"@typescript-eslint/utils": "6.
|
|
29338
|
-
"@typescript-eslint/visitor-keys": "6.
|
|
29335
|
+
"@typescript-eslint/scope-manager": "6.19.0",
|
|
29336
|
+
"@typescript-eslint/type-utils": "6.19.0",
|
|
29337
|
+
"@typescript-eslint/utils": "6.19.0",
|
|
29338
|
+
"@typescript-eslint/visitor-keys": "6.19.0",
|
|
29339
29339
|
"debug": "^4.3.4",
|
|
29340
29340
|
"graphemer": "^1.4.0",
|
|
29341
29341
|
"ignore": "^5.2.4",
|
|
@@ -29391,14 +29391,14 @@
|
|
|
29391
29391
|
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
|
29392
29392
|
},
|
|
29393
29393
|
"node_modules/eslint-config-enact/node_modules/@typescript-eslint/parser": {
|
|
29394
|
-
"version": "6.
|
|
29395
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.
|
|
29396
|
-
"integrity": "sha512-
|
|
29397
|
-
"dependencies": {
|
|
29398
|
-
"@typescript-eslint/scope-manager": "6.
|
|
29399
|
-
"@typescript-eslint/types": "6.
|
|
29400
|
-
"@typescript-eslint/typescript-estree": "6.
|
|
29401
|
-
"@typescript-eslint/visitor-keys": "6.
|
|
29394
|
+
"version": "6.19.0",
|
|
29395
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.19.0.tgz",
|
|
29396
|
+
"integrity": "sha512-1DyBLG5SH7PYCd00QlroiW60YJ4rWMuUGa/JBV0iZuqi4l4IK3twKPq5ZkEebmGqRjXWVgsUzfd3+nZveewgow==",
|
|
29397
|
+
"dependencies": {
|
|
29398
|
+
"@typescript-eslint/scope-manager": "6.19.0",
|
|
29399
|
+
"@typescript-eslint/types": "6.19.0",
|
|
29400
|
+
"@typescript-eslint/typescript-estree": "6.19.0",
|
|
29401
|
+
"@typescript-eslint/visitor-keys": "6.19.0",
|
|
29402
29402
|
"debug": "^4.3.4"
|
|
29403
29403
|
},
|
|
29404
29404
|
"engines": {
|
|
@@ -29418,12 +29418,12 @@
|
|
|
29418
29418
|
}
|
|
29419
29419
|
},
|
|
29420
29420
|
"node_modules/eslint-config-enact/node_modules/@typescript-eslint/scope-manager": {
|
|
29421
|
-
"version": "6.
|
|
29422
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.
|
|
29423
|
-
"integrity": "sha512
|
|
29421
|
+
"version": "6.19.0",
|
|
29422
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.19.0.tgz",
|
|
29423
|
+
"integrity": "sha512-dO1XMhV2ehBI6QN8Ufi7I10wmUovmLU0Oru3n5LVlM2JuzB4M+dVphCPLkVpKvGij2j/pHBWuJ9piuXx+BhzxQ==",
|
|
29424
29424
|
"dependencies": {
|
|
29425
|
-
"@typescript-eslint/types": "6.
|
|
29426
|
-
"@typescript-eslint/visitor-keys": "6.
|
|
29425
|
+
"@typescript-eslint/types": "6.19.0",
|
|
29426
|
+
"@typescript-eslint/visitor-keys": "6.19.0"
|
|
29427
29427
|
},
|
|
29428
29428
|
"engines": {
|
|
29429
29429
|
"node": "^16.0.0 || >=18.0.0"
|
|
@@ -29434,12 +29434,12 @@
|
|
|
29434
29434
|
}
|
|
29435
29435
|
},
|
|
29436
29436
|
"node_modules/eslint-config-enact/node_modules/@typescript-eslint/type-utils": {
|
|
29437
|
-
"version": "6.
|
|
29438
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.
|
|
29439
|
-
"integrity": "sha512-
|
|
29437
|
+
"version": "6.19.0",
|
|
29438
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.19.0.tgz",
|
|
29439
|
+
"integrity": "sha512-mcvS6WSWbjiSxKCwBcXtOM5pRkPQ6kcDds/juxcy/727IQr3xMEcwr/YLHW2A2+Fp5ql6khjbKBzOyjuPqGi/w==",
|
|
29440
29440
|
"dependencies": {
|
|
29441
|
-
"@typescript-eslint/typescript-estree": "6.
|
|
29442
|
-
"@typescript-eslint/utils": "6.
|
|
29441
|
+
"@typescript-eslint/typescript-estree": "6.19.0",
|
|
29442
|
+
"@typescript-eslint/utils": "6.19.0",
|
|
29443
29443
|
"debug": "^4.3.4",
|
|
29444
29444
|
"ts-api-utils": "^1.0.1"
|
|
29445
29445
|
},
|
|
@@ -29460,9 +29460,9 @@
|
|
|
29460
29460
|
}
|
|
29461
29461
|
},
|
|
29462
29462
|
"node_modules/eslint-config-enact/node_modules/@typescript-eslint/types": {
|
|
29463
|
-
"version": "6.
|
|
29464
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.
|
|
29465
|
-
"integrity": "sha512-
|
|
29463
|
+
"version": "6.19.0",
|
|
29464
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.19.0.tgz",
|
|
29465
|
+
"integrity": "sha512-lFviGV/vYhOy3m8BJ/nAKoAyNhInTdXpftonhWle66XHAtT1ouBlkjL496b5H5hb8dWXHwtypTqgtb/DEa+j5A==",
|
|
29466
29466
|
"engines": {
|
|
29467
29467
|
"node": "^16.0.0 || >=18.0.0"
|
|
29468
29468
|
},
|
|
@@ -29472,15 +29472,16 @@
|
|
|
29472
29472
|
}
|
|
29473
29473
|
},
|
|
29474
29474
|
"node_modules/eslint-config-enact/node_modules/@typescript-eslint/typescript-estree": {
|
|
29475
|
-
"version": "6.
|
|
29476
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.
|
|
29477
|
-
"integrity": "sha512-
|
|
29475
|
+
"version": "6.19.0",
|
|
29476
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.19.0.tgz",
|
|
29477
|
+
"integrity": "sha512-o/zefXIbbLBZ8YJ51NlkSAt2BamrK6XOmuxSR3hynMIzzyMY33KuJ9vuMdFSXW+H0tVvdF9qBPTHA91HDb4BIQ==",
|
|
29478
29478
|
"dependencies": {
|
|
29479
|
-
"@typescript-eslint/types": "6.
|
|
29480
|
-
"@typescript-eslint/visitor-keys": "6.
|
|
29479
|
+
"@typescript-eslint/types": "6.19.0",
|
|
29480
|
+
"@typescript-eslint/visitor-keys": "6.19.0",
|
|
29481
29481
|
"debug": "^4.3.4",
|
|
29482
29482
|
"globby": "^11.1.0",
|
|
29483
29483
|
"is-glob": "^4.0.3",
|
|
29484
|
+
"minimatch": "9.0.3",
|
|
29484
29485
|
"semver": "^7.5.4",
|
|
29485
29486
|
"ts-api-utils": "^1.0.1"
|
|
29486
29487
|
},
|
|
@@ -29497,6 +29498,14 @@
|
|
|
29497
29498
|
}
|
|
29498
29499
|
}
|
|
29499
29500
|
},
|
|
29501
|
+
"node_modules/eslint-config-enact/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
|
29502
|
+
"version": "2.0.1",
|
|
29503
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
|
|
29504
|
+
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
|
|
29505
|
+
"dependencies": {
|
|
29506
|
+
"balanced-match": "^1.0.0"
|
|
29507
|
+
}
|
|
29508
|
+
},
|
|
29500
29509
|
"node_modules/eslint-config-enact/node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": {
|
|
29501
29510
|
"version": "6.0.0",
|
|
29502
29511
|
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
|
|
@@ -29508,6 +29517,20 @@
|
|
|
29508
29517
|
"node": ">=10"
|
|
29509
29518
|
}
|
|
29510
29519
|
},
|
|
29520
|
+
"node_modules/eslint-config-enact/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
|
|
29521
|
+
"version": "9.0.3",
|
|
29522
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
|
|
29523
|
+
"integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
|
|
29524
|
+
"dependencies": {
|
|
29525
|
+
"brace-expansion": "^2.0.1"
|
|
29526
|
+
},
|
|
29527
|
+
"engines": {
|
|
29528
|
+
"node": ">=16 || 14 >=14.17"
|
|
29529
|
+
},
|
|
29530
|
+
"funding": {
|
|
29531
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
29532
|
+
}
|
|
29533
|
+
},
|
|
29511
29534
|
"node_modules/eslint-config-enact/node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
|
|
29512
29535
|
"version": "7.5.4",
|
|
29513
29536
|
"resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
|
|
@@ -29528,16 +29551,16 @@
|
|
|
29528
29551
|
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
|
29529
29552
|
},
|
|
29530
29553
|
"node_modules/eslint-config-enact/node_modules/@typescript-eslint/utils": {
|
|
29531
|
-
"version": "6.
|
|
29532
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.
|
|
29533
|
-
"integrity": "sha512-
|
|
29554
|
+
"version": "6.19.0",
|
|
29555
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.19.0.tgz",
|
|
29556
|
+
"integrity": "sha512-QR41YXySiuN++/dC9UArYOg4X86OAYP83OWTewpVx5ct1IZhjjgTLocj7QNxGhWoTqknsgpl7L+hGygCO+sdYw==",
|
|
29534
29557
|
"dependencies": {
|
|
29535
29558
|
"@eslint-community/eslint-utils": "^4.4.0",
|
|
29536
29559
|
"@types/json-schema": "^7.0.12",
|
|
29537
29560
|
"@types/semver": "^7.5.0",
|
|
29538
|
-
"@typescript-eslint/scope-manager": "6.
|
|
29539
|
-
"@typescript-eslint/types": "6.
|
|
29540
|
-
"@typescript-eslint/typescript-estree": "6.
|
|
29561
|
+
"@typescript-eslint/scope-manager": "6.19.0",
|
|
29562
|
+
"@typescript-eslint/types": "6.19.0",
|
|
29563
|
+
"@typescript-eslint/typescript-estree": "6.19.0",
|
|
29541
29564
|
"semver": "^7.5.4"
|
|
29542
29565
|
},
|
|
29543
29566
|
"engines": {
|
|
@@ -29582,11 +29605,11 @@
|
|
|
29582
29605
|
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
|
29583
29606
|
},
|
|
29584
29607
|
"node_modules/eslint-config-enact/node_modules/@typescript-eslint/visitor-keys": {
|
|
29585
|
-
"version": "6.
|
|
29586
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.
|
|
29587
|
-
"integrity": "sha512-
|
|
29608
|
+
"version": "6.19.0",
|
|
29609
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.19.0.tgz",
|
|
29610
|
+
"integrity": "sha512-hZaUCORLgubBvtGpp1JEFEazcuEdfxta9j4iUwdSAr7mEsYYAp3EAUyCZk3VEEqGj6W+AV4uWyrDGtrlawAsgQ==",
|
|
29588
29611
|
"dependencies": {
|
|
29589
|
-
"@typescript-eslint/types": "6.
|
|
29612
|
+
"@typescript-eslint/types": "6.19.0",
|
|
29590
29613
|
"eslint-visitor-keys": "^3.4.1"
|
|
29591
29614
|
},
|
|
29592
29615
|
"engines": {
|
|
@@ -35585,9 +35608,9 @@
|
|
|
35585
35608
|
}
|
|
35586
35609
|
},
|
|
35587
35610
|
"node_modules/eslint-config-enact/node_modules/eslint-plugin-enact": {
|
|
35588
|
-
"version": "1.0.
|
|
35589
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-enact/-/eslint-plugin-enact-1.0.
|
|
35590
|
-
"integrity": "sha512-
|
|
35611
|
+
"version": "1.0.7",
|
|
35612
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-enact/-/eslint-plugin-enact-1.0.7.tgz",
|
|
35613
|
+
"integrity": "sha512-5TLB+ZYj0GKHxOJUsYe3Et0f1UY+iJX7JMxkFsCxUDr2JV+THrhimOHozUGIOLm6nkj8/3y/mK25M1d2ZKa4NA==",
|
|
35591
35614
|
"hasShrinkwrap": true,
|
|
35592
35615
|
"dependencies": {
|
|
35593
35616
|
"doctrine": "^3.0.0",
|
|
@@ -35635,9 +35658,9 @@
|
|
|
35635
35658
|
}
|
|
35636
35659
|
},
|
|
35637
35660
|
"node_modules/eslint-config-enact/node_modules/eslint-plugin-enact/node_modules/@eslint/eslintrc": {
|
|
35638
|
-
"version": "2.1.
|
|
35639
|
-
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.
|
|
35640
|
-
"integrity": "sha512-
|
|
35661
|
+
"version": "2.1.4",
|
|
35662
|
+
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
|
|
35663
|
+
"integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
|
|
35641
35664
|
"peer": true,
|
|
35642
35665
|
"dependencies": {
|
|
35643
35666
|
"ajv": "^6.12.4",
|
|
@@ -35680,9 +35703,9 @@
|
|
|
35680
35703
|
}
|
|
35681
35704
|
},
|
|
35682
35705
|
"node_modules/eslint-config-enact/node_modules/eslint-plugin-enact/node_modules/@eslint/js": {
|
|
35683
|
-
"version": "8.
|
|
35684
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.
|
|
35685
|
-
"integrity": "sha512-
|
|
35706
|
+
"version": "8.56.0",
|
|
35707
|
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz",
|
|
35708
|
+
"integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==",
|
|
35686
35709
|
"peer": true,
|
|
35687
35710
|
"engines": {
|
|
35688
35711
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
@@ -35785,9 +35808,9 @@
|
|
|
35785
35808
|
"peer": true
|
|
35786
35809
|
},
|
|
35787
35810
|
"node_modules/eslint-config-enact/node_modules/eslint-plugin-enact/node_modules/acorn": {
|
|
35788
|
-
"version": "8.11.
|
|
35789
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.
|
|
35790
|
-
"integrity": "sha512-
|
|
35811
|
+
"version": "8.11.3",
|
|
35812
|
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz",
|
|
35813
|
+
"integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==",
|
|
35791
35814
|
"peer": true,
|
|
35792
35815
|
"bin": {
|
|
35793
35816
|
"acorn": "bin/acorn"
|
|
@@ -36328,15 +36351,15 @@
|
|
|
36328
36351
|
}
|
|
36329
36352
|
},
|
|
36330
36353
|
"node_modules/eslint-config-enact/node_modules/eslint-plugin-enact/node_modules/eslint": {
|
|
36331
|
-
"version": "8.
|
|
36332
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.
|
|
36333
|
-
"integrity": "sha512-
|
|
36354
|
+
"version": "8.56.0",
|
|
36355
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz",
|
|
36356
|
+
"integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==",
|
|
36334
36357
|
"peer": true,
|
|
36335
36358
|
"dependencies": {
|
|
36336
36359
|
"@eslint-community/eslint-utils": "^4.2.0",
|
|
36337
36360
|
"@eslint-community/regexpp": "^4.6.1",
|
|
36338
|
-
"@eslint/eslintrc": "^2.1.
|
|
36339
|
-
"@eslint/js": "8.
|
|
36361
|
+
"@eslint/eslintrc": "^2.1.4",
|
|
36362
|
+
"@eslint/js": "8.56.0",
|
|
36340
36363
|
"@humanwhocodes/config-array": "^0.11.13",
|
|
36341
36364
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
36342
36365
|
"@nodelib/fs.walk": "^1.2.8",
|
|
@@ -36735,9 +36758,9 @@
|
|
|
36735
36758
|
}
|
|
36736
36759
|
},
|
|
36737
36760
|
"node_modules/eslint-config-enact/node_modules/eslint-plugin-enact/node_modules/globals": {
|
|
36738
|
-
"version": "13.
|
|
36739
|
-
"resolved": "https://registry.npmjs.org/globals/-/globals-13.
|
|
36740
|
-
"integrity": "sha512-
|
|
36761
|
+
"version": "13.24.0",
|
|
36762
|
+
"resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
|
|
36763
|
+
"integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
|
|
36741
36764
|
"peer": true,
|
|
36742
36765
|
"dependencies": {
|
|
36743
36766
|
"type-fest": "^0.20.2"
|
|
@@ -38157,9 +38180,9 @@
|
|
|
38157
38180
|
}
|
|
38158
38181
|
},
|
|
38159
38182
|
"node_modules/eslint-config-enact/node_modules/eslint-plugin-jest": {
|
|
38160
|
-
"version": "27.6.
|
|
38161
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.6.
|
|
38162
|
-
"integrity": "sha512
|
|
38183
|
+
"version": "27.6.3",
|
|
38184
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.6.3.tgz",
|
|
38185
|
+
"integrity": "sha512-+YsJFVH6R+tOiO3gCJon5oqn4KWc+mDq2leudk8mrp8RFubLOo9CVyi3cib4L7XMpxExmkmBZQTPDYVBzgpgOA==",
|
|
38163
38186
|
"dependencies": {
|
|
38164
38187
|
"@typescript-eslint/utils": "^5.10.0"
|
|
38165
38188
|
},
|
|
@@ -71044,19 +71067,19 @@
|
|
|
71044
71067
|
}
|
|
71045
71068
|
},
|
|
71046
71069
|
"eslint-config-enact": {
|
|
71047
|
-
"version": "4.2.
|
|
71048
|
-
"resolved": "https://registry.npmjs.org/eslint-config-enact/-/eslint-config-enact-4.2.
|
|
71049
|
-
"integrity": "sha512-
|
|
71070
|
+
"version": "4.2.1",
|
|
71071
|
+
"resolved": "https://registry.npmjs.org/eslint-config-enact/-/eslint-config-enact-4.2.1.tgz",
|
|
71072
|
+
"integrity": "sha512-LPIf/4XeXwmn2LjBVEkVy33BjELcP9G2dlHjao25FJelZ4LgRRlF8/SVIrlUeL83f9iS5XnTu9l0W4u1NGr5Cw==",
|
|
71050
71073
|
"requires": {
|
|
71051
71074
|
"@babel/eslint-parser": "^7.23.3",
|
|
71052
|
-
"@babel/eslint-plugin": "^7.
|
|
71075
|
+
"@babel/eslint-plugin": "^7.23.5",
|
|
71053
71076
|
"@rushstack/eslint-patch": "^1.6.1",
|
|
71054
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
71055
|
-
"@typescript-eslint/parser": "^6.
|
|
71077
|
+
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
71078
|
+
"@typescript-eslint/parser": "^6.19.0",
|
|
71056
71079
|
"babel-preset-enact": "^0.1.6",
|
|
71057
|
-
"eslint": "^8.
|
|
71058
|
-
"eslint-plugin-enact": "^1.0.
|
|
71059
|
-
"eslint-plugin-jest": "^27.6.
|
|
71080
|
+
"eslint": "^8.56.0",
|
|
71081
|
+
"eslint-plugin-enact": "^1.0.7",
|
|
71082
|
+
"eslint-plugin-jest": "^27.6.3",
|
|
71060
71083
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
71061
71084
|
"eslint-plugin-react": "^7.33.2",
|
|
71062
71085
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
@@ -71477,15 +71500,15 @@
|
|
|
71477
71500
|
"integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A=="
|
|
71478
71501
|
},
|
|
71479
71502
|
"@typescript-eslint/eslint-plugin": {
|
|
71480
|
-
"version": "6.
|
|
71481
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.
|
|
71482
|
-
"integrity": "sha512-
|
|
71503
|
+
"version": "6.19.0",
|
|
71504
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.19.0.tgz",
|
|
71505
|
+
"integrity": "sha512-DUCUkQNklCQYnrBSSikjVChdc84/vMPDQSgJTHBZ64G9bA9w0Crc0rd2diujKbTdp6w2J47qkeHQLoi0rpLCdg==",
|
|
71483
71506
|
"requires": {
|
|
71484
71507
|
"@eslint-community/regexpp": "^4.5.1",
|
|
71485
|
-
"@typescript-eslint/scope-manager": "6.
|
|
71486
|
-
"@typescript-eslint/type-utils": "6.
|
|
71487
|
-
"@typescript-eslint/utils": "6.
|
|
71488
|
-
"@typescript-eslint/visitor-keys": "6.
|
|
71508
|
+
"@typescript-eslint/scope-manager": "6.19.0",
|
|
71509
|
+
"@typescript-eslint/type-utils": "6.19.0",
|
|
71510
|
+
"@typescript-eslint/utils": "6.19.0",
|
|
71511
|
+
"@typescript-eslint/visitor-keys": "6.19.0",
|
|
71489
71512
|
"debug": "^4.3.4",
|
|
71490
71513
|
"graphemer": "^1.4.0",
|
|
71491
71514
|
"ignore": "^5.2.4",
|
|
@@ -71518,56 +71541,65 @@
|
|
|
71518
71541
|
}
|
|
71519
71542
|
},
|
|
71520
71543
|
"@typescript-eslint/parser": {
|
|
71521
|
-
"version": "6.
|
|
71522
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.
|
|
71523
|
-
"integrity": "sha512-
|
|
71524
|
-
"requires": {
|
|
71525
|
-
"@typescript-eslint/scope-manager": "6.
|
|
71526
|
-
"@typescript-eslint/types": "6.
|
|
71527
|
-
"@typescript-eslint/typescript-estree": "6.
|
|
71528
|
-
"@typescript-eslint/visitor-keys": "6.
|
|
71544
|
+
"version": "6.19.0",
|
|
71545
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.19.0.tgz",
|
|
71546
|
+
"integrity": "sha512-1DyBLG5SH7PYCd00QlroiW60YJ4rWMuUGa/JBV0iZuqi4l4IK3twKPq5ZkEebmGqRjXWVgsUzfd3+nZveewgow==",
|
|
71547
|
+
"requires": {
|
|
71548
|
+
"@typescript-eslint/scope-manager": "6.19.0",
|
|
71549
|
+
"@typescript-eslint/types": "6.19.0",
|
|
71550
|
+
"@typescript-eslint/typescript-estree": "6.19.0",
|
|
71551
|
+
"@typescript-eslint/visitor-keys": "6.19.0",
|
|
71529
71552
|
"debug": "^4.3.4"
|
|
71530
71553
|
}
|
|
71531
71554
|
},
|
|
71532
71555
|
"@typescript-eslint/scope-manager": {
|
|
71533
|
-
"version": "6.
|
|
71534
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.
|
|
71535
|
-
"integrity": "sha512
|
|
71556
|
+
"version": "6.19.0",
|
|
71557
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.19.0.tgz",
|
|
71558
|
+
"integrity": "sha512-dO1XMhV2ehBI6QN8Ufi7I10wmUovmLU0Oru3n5LVlM2JuzB4M+dVphCPLkVpKvGij2j/pHBWuJ9piuXx+BhzxQ==",
|
|
71536
71559
|
"requires": {
|
|
71537
|
-
"@typescript-eslint/types": "6.
|
|
71538
|
-
"@typescript-eslint/visitor-keys": "6.
|
|
71560
|
+
"@typescript-eslint/types": "6.19.0",
|
|
71561
|
+
"@typescript-eslint/visitor-keys": "6.19.0"
|
|
71539
71562
|
}
|
|
71540
71563
|
},
|
|
71541
71564
|
"@typescript-eslint/type-utils": {
|
|
71542
|
-
"version": "6.
|
|
71543
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.
|
|
71544
|
-
"integrity": "sha512-
|
|
71565
|
+
"version": "6.19.0",
|
|
71566
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.19.0.tgz",
|
|
71567
|
+
"integrity": "sha512-mcvS6WSWbjiSxKCwBcXtOM5pRkPQ6kcDds/juxcy/727IQr3xMEcwr/YLHW2A2+Fp5ql6khjbKBzOyjuPqGi/w==",
|
|
71545
71568
|
"requires": {
|
|
71546
|
-
"@typescript-eslint/typescript-estree": "6.
|
|
71547
|
-
"@typescript-eslint/utils": "6.
|
|
71569
|
+
"@typescript-eslint/typescript-estree": "6.19.0",
|
|
71570
|
+
"@typescript-eslint/utils": "6.19.0",
|
|
71548
71571
|
"debug": "^4.3.4",
|
|
71549
71572
|
"ts-api-utils": "^1.0.1"
|
|
71550
71573
|
}
|
|
71551
71574
|
},
|
|
71552
71575
|
"@typescript-eslint/types": {
|
|
71553
|
-
"version": "6.
|
|
71554
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.
|
|
71555
|
-
"integrity": "sha512-
|
|
71576
|
+
"version": "6.19.0",
|
|
71577
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.19.0.tgz",
|
|
71578
|
+
"integrity": "sha512-lFviGV/vYhOy3m8BJ/nAKoAyNhInTdXpftonhWle66XHAtT1ouBlkjL496b5H5hb8dWXHwtypTqgtb/DEa+j5A=="
|
|
71556
71579
|
},
|
|
71557
71580
|
"@typescript-eslint/typescript-estree": {
|
|
71558
|
-
"version": "6.
|
|
71559
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.
|
|
71560
|
-
"integrity": "sha512-
|
|
71581
|
+
"version": "6.19.0",
|
|
71582
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.19.0.tgz",
|
|
71583
|
+
"integrity": "sha512-o/zefXIbbLBZ8YJ51NlkSAt2BamrK6XOmuxSR3hynMIzzyMY33KuJ9vuMdFSXW+H0tVvdF9qBPTHA91HDb4BIQ==",
|
|
71561
71584
|
"requires": {
|
|
71562
|
-
"@typescript-eslint/types": "6.
|
|
71563
|
-
"@typescript-eslint/visitor-keys": "6.
|
|
71585
|
+
"@typescript-eslint/types": "6.19.0",
|
|
71586
|
+
"@typescript-eslint/visitor-keys": "6.19.0",
|
|
71564
71587
|
"debug": "^4.3.4",
|
|
71565
71588
|
"globby": "^11.1.0",
|
|
71566
71589
|
"is-glob": "^4.0.3",
|
|
71590
|
+
"minimatch": "9.0.3",
|
|
71567
71591
|
"semver": "^7.5.4",
|
|
71568
71592
|
"ts-api-utils": "^1.0.1"
|
|
71569
71593
|
},
|
|
71570
71594
|
"dependencies": {
|
|
71595
|
+
"brace-expansion": {
|
|
71596
|
+
"version": "2.0.1",
|
|
71597
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
|
|
71598
|
+
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
|
|
71599
|
+
"requires": {
|
|
71600
|
+
"balanced-match": "^1.0.0"
|
|
71601
|
+
}
|
|
71602
|
+
},
|
|
71571
71603
|
"lru-cache": {
|
|
71572
71604
|
"version": "6.0.0",
|
|
71573
71605
|
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
|
|
@@ -71576,6 +71608,14 @@
|
|
|
71576
71608
|
"yallist": "^4.0.0"
|
|
71577
71609
|
}
|
|
71578
71610
|
},
|
|
71611
|
+
"minimatch": {
|
|
71612
|
+
"version": "9.0.3",
|
|
71613
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
|
|
71614
|
+
"integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
|
|
71615
|
+
"requires": {
|
|
71616
|
+
"brace-expansion": "^2.0.1"
|
|
71617
|
+
}
|
|
71618
|
+
},
|
|
71579
71619
|
"semver": {
|
|
71580
71620
|
"version": "7.5.4",
|
|
71581
71621
|
"resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
|
|
@@ -71592,16 +71632,16 @@
|
|
|
71592
71632
|
}
|
|
71593
71633
|
},
|
|
71594
71634
|
"@typescript-eslint/utils": {
|
|
71595
|
-
"version": "6.
|
|
71596
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.
|
|
71597
|
-
"integrity": "sha512-
|
|
71635
|
+
"version": "6.19.0",
|
|
71636
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.19.0.tgz",
|
|
71637
|
+
"integrity": "sha512-QR41YXySiuN++/dC9UArYOg4X86OAYP83OWTewpVx5ct1IZhjjgTLocj7QNxGhWoTqknsgpl7L+hGygCO+sdYw==",
|
|
71598
71638
|
"requires": {
|
|
71599
71639
|
"@eslint-community/eslint-utils": "^4.4.0",
|
|
71600
71640
|
"@types/json-schema": "^7.0.12",
|
|
71601
71641
|
"@types/semver": "^7.5.0",
|
|
71602
|
-
"@typescript-eslint/scope-manager": "6.
|
|
71603
|
-
"@typescript-eslint/types": "6.
|
|
71604
|
-
"@typescript-eslint/typescript-estree": "6.
|
|
71642
|
+
"@typescript-eslint/scope-manager": "6.19.0",
|
|
71643
|
+
"@typescript-eslint/types": "6.19.0",
|
|
71644
|
+
"@typescript-eslint/typescript-estree": "6.19.0",
|
|
71605
71645
|
"semver": "^7.5.4"
|
|
71606
71646
|
},
|
|
71607
71647
|
"dependencies": {
|
|
@@ -71629,11 +71669,11 @@
|
|
|
71629
71669
|
}
|
|
71630
71670
|
},
|
|
71631
71671
|
"@typescript-eslint/visitor-keys": {
|
|
71632
|
-
"version": "6.
|
|
71633
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.
|
|
71634
|
-
"integrity": "sha512-
|
|
71672
|
+
"version": "6.19.0",
|
|
71673
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.19.0.tgz",
|
|
71674
|
+
"integrity": "sha512-hZaUCORLgubBvtGpp1JEFEazcuEdfxta9j4iUwdSAr7mEsYYAp3EAUyCZk3VEEqGj6W+AV4uWyrDGtrlawAsgQ==",
|
|
71635
71675
|
"requires": {
|
|
71636
|
-
"@typescript-eslint/types": "6.
|
|
71676
|
+
"@typescript-eslint/types": "6.19.0",
|
|
71637
71677
|
"eslint-visitor-keys": "^3.4.1"
|
|
71638
71678
|
},
|
|
71639
71679
|
"dependencies": {
|
|
@@ -75878,9 +75918,9 @@
|
|
|
75878
75918
|
}
|
|
75879
75919
|
},
|
|
75880
75920
|
"eslint-plugin-enact": {
|
|
75881
|
-
"version": "1.0.
|
|
75882
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-enact/-/eslint-plugin-enact-1.0.
|
|
75883
|
-
"integrity": "sha512-
|
|
75921
|
+
"version": "1.0.7",
|
|
75922
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-enact/-/eslint-plugin-enact-1.0.7.tgz",
|
|
75923
|
+
"integrity": "sha512-5TLB+ZYj0GKHxOJUsYe3Et0f1UY+iJX7JMxkFsCxUDr2JV+THrhimOHozUGIOLm6nkj8/3y/mK25M1d2ZKa4NA==",
|
|
75884
75924
|
"requires": {
|
|
75885
75925
|
"doctrine": "^3.0.0",
|
|
75886
75926
|
"jsx-ast-utils": "^3.3.5",
|
|
@@ -75909,9 +75949,9 @@
|
|
|
75909
75949
|
"peer": true
|
|
75910
75950
|
},
|
|
75911
75951
|
"@eslint/eslintrc": {
|
|
75912
|
-
"version": "2.1.
|
|
75913
|
-
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.
|
|
75914
|
-
"integrity": "sha512-
|
|
75952
|
+
"version": "2.1.4",
|
|
75953
|
+
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
|
|
75954
|
+
"integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
|
|
75915
75955
|
"peer": true,
|
|
75916
75956
|
"requires": {
|
|
75917
75957
|
"ajv": "^6.12.4",
|
|
@@ -75947,9 +75987,9 @@
|
|
|
75947
75987
|
}
|
|
75948
75988
|
},
|
|
75949
75989
|
"@eslint/js": {
|
|
75950
|
-
"version": "8.
|
|
75951
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.
|
|
75952
|
-
"integrity": "sha512-
|
|
75990
|
+
"version": "8.56.0",
|
|
75991
|
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz",
|
|
75992
|
+
"integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==",
|
|
75953
75993
|
"peer": true
|
|
75954
75994
|
},
|
|
75955
75995
|
"@humanwhocodes/config-array": {
|
|
@@ -76029,9 +76069,9 @@
|
|
|
76029
76069
|
"peer": true
|
|
76030
76070
|
},
|
|
76031
76071
|
"acorn": {
|
|
76032
|
-
"version": "8.11.
|
|
76033
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.
|
|
76034
|
-
"integrity": "sha512-
|
|
76072
|
+
"version": "8.11.3",
|
|
76073
|
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz",
|
|
76074
|
+
"integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==",
|
|
76035
76075
|
"peer": true
|
|
76036
76076
|
},
|
|
76037
76077
|
"acorn-jsx": {
|
|
@@ -76423,15 +76463,15 @@
|
|
|
76423
76463
|
"peer": true
|
|
76424
76464
|
},
|
|
76425
76465
|
"eslint": {
|
|
76426
|
-
"version": "8.
|
|
76427
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.
|
|
76428
|
-
"integrity": "sha512-
|
|
76466
|
+
"version": "8.56.0",
|
|
76467
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz",
|
|
76468
|
+
"integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==",
|
|
76429
76469
|
"peer": true,
|
|
76430
76470
|
"requires": {
|
|
76431
76471
|
"@eslint-community/eslint-utils": "^4.2.0",
|
|
76432
76472
|
"@eslint-community/regexpp": "^4.6.1",
|
|
76433
|
-
"@eslint/eslintrc": "^2.1.
|
|
76434
|
-
"@eslint/js": "8.
|
|
76473
|
+
"@eslint/eslintrc": "^2.1.4",
|
|
76474
|
+
"@eslint/js": "8.56.0",
|
|
76435
76475
|
"@humanwhocodes/config-array": "^0.11.13",
|
|
76436
76476
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
76437
76477
|
"@nodelib/fs.walk": "^1.2.8",
|
|
@@ -76734,9 +76774,9 @@
|
|
|
76734
76774
|
}
|
|
76735
76775
|
},
|
|
76736
76776
|
"globals": {
|
|
76737
|
-
"version": "13.
|
|
76738
|
-
"resolved": "https://registry.npmjs.org/globals/-/globals-13.
|
|
76739
|
-
"integrity": "sha512-
|
|
76777
|
+
"version": "13.24.0",
|
|
76778
|
+
"resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
|
|
76779
|
+
"integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
|
|
76740
76780
|
"peer": true,
|
|
76741
76781
|
"requires": {
|
|
76742
76782
|
"type-fest": "^0.20.2"
|
|
@@ -77703,9 +77743,9 @@
|
|
|
77703
77743
|
}
|
|
77704
77744
|
},
|
|
77705
77745
|
"eslint-plugin-jest": {
|
|
77706
|
-
"version": "27.6.
|
|
77707
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.6.
|
|
77708
|
-
"integrity": "sha512
|
|
77746
|
+
"version": "27.6.3",
|
|
77747
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.6.3.tgz",
|
|
77748
|
+
"integrity": "sha512-+YsJFVH6R+tOiO3gCJon5oqn4KWc+mDq2leudk8mrp8RFubLOo9CVyi3cib4L7XMpxExmkmBZQTPDYVBzgpgOA==",
|
|
77709
77749
|
"requires": {
|
|
77710
77750
|
"@typescript-eslint/utils": "^5.10.0"
|
|
77711
77751
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enact/cli",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.2",
|
|
4
4
|
"description": "Full-featured build environment tool for Enact applications.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Jason Robitaille <jason.robitaille@lge.com>",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"dotenv": "^16.3.1",
|
|
65
65
|
"dotenv-expand": "^10.0.0",
|
|
66
66
|
"eslint": "^8.56.0",
|
|
67
|
-
"eslint-config-enact": "^4.2.
|
|
67
|
+
"eslint-config-enact": "^4.2.1",
|
|
68
68
|
"eslint-webpack-plugin": "^4.0.1",
|
|
69
69
|
"expose-loader": "^4.1.0",
|
|
70
70
|
"file-loader": "^6.2.0",
|