@ui5/cli 4.0.3 → 4.0.5

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 CHANGED
@@ -2,7 +2,22 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
4
4
 
5
- A list of unreleased changes can be found [here](https://github.com/SAP/ui5-cli/compare/v4.0.3...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-cli/compare/v4.0.5...HEAD).
6
+
7
+ <a name="v4.0.5"></a>
8
+ ## [v4.0.5] - 2024-08-20
9
+ ### Bug Fixes
10
+ - Print error cause stack trace [`323845c`](https://github.com/SAP/ui5-cli/commit/323845cefe48c22c3224864e55d91f82762e6246)
11
+
12
+ ### Dependency Updates
13
+ - Bump [@ui5](https://github.com/ui5)/builder from 4.0.1 to 4.0.2 [`dabb3f5`](https://github.com/SAP/ui5-cli/commit/dabb3f57eef2b3506061e36bae8c10b8a296ca96)
14
+
15
+
16
+ <a name="v4.0.4"></a>
17
+ ## [v4.0.4] - 2024-08-09
18
+ ### Dependency Updates
19
+ - Bump [@ui5](https://github.com/ui5)/server from 4.0.2 to 4.0.3 [`b94ede8`](https://github.com/SAP/ui5-cli/commit/b94ede8bea9c126d743b56b33221d9f570746449)
20
+
6
21
 
7
22
  <a name="v4.0.3"></a>
8
23
  ## [v4.0.3] - 2024-08-01
@@ -1251,6 +1266,8 @@ Only Node.js v10 or higher is supported.
1251
1266
 
1252
1267
  <a name="v0.0.1"></a>
1253
1268
  ## v0.0.1 - 2018-06-06
1269
+ [v4.0.5]: https://github.com/SAP/ui5-cli/compare/v4.0.4...v4.0.5
1270
+ [v4.0.4]: https://github.com/SAP/ui5-cli/compare/v4.0.3...v4.0.4
1254
1271
  [v4.0.3]: https://github.com/SAP/ui5-cli/compare/v4.0.2...v4.0.3
1255
1272
  [v4.0.2]: https://github.com/SAP/ui5-cli/compare/v4.0.1...v4.0.2
1256
1273
  [v4.0.1]: https://github.com/SAP/ui5-cli/compare/v4.0.0...v4.0.1
package/lib/cli/base.js CHANGED
@@ -108,6 +108,11 @@ export default function(cli) {
108
108
  process.stderr.write("\n");
109
109
  process.stderr.write(err.stack);
110
110
  process.stderr.write("\n");
111
+ if (err.cause instanceof Error && err.cause.stack) {
112
+ process.stderr.write(chalk.underline("Error Cause Stack Trace:\n"));
113
+ process.stderr.write(err.cause.stack + "\n");
114
+ process.stderr.write("\n");
115
+ }
111
116
  process.stderr.write(
112
117
  chalk.dim(
113
118
  `If you think this is an issue of the UI5 Tooling, you might report it using the ` +
@@ -15,7 +15,7 @@ versions.getVersion = (pkg) => {
15
15
  try {
16
16
  const packageInfo = require(`${pkg}/package.json`);
17
17
  return packageInfo.version || NOT_FOUND;
18
- } catch (err) {
18
+ } catch {
19
19
  return NOT_FOUND;
20
20
  }
21
21
  };
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@ui5/cli",
3
- "version": "4.0.3",
3
+ "version": "4.0.5",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@ui5/cli",
9
- "version": "4.0.3",
9
+ "version": "4.0.5",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
- "@ui5/builder": "^4.0.1",
12
+ "@ui5/builder": "^4.0.2",
13
13
  "@ui5/fs": "^4.0.0",
14
14
  "@ui5/logger": "^4.0.1",
15
15
  "@ui5/project": "^4.0.2",
16
- "@ui5/server": "^4.0.2",
16
+ "@ui5/server": "^4.0.3",
17
17
  "chalk": "^5.3.0",
18
18
  "data-with-position": "^0.5.0",
19
19
  "import-local": "^3.2.0",
@@ -21,7 +21,7 @@
21
21
  "open": "^10.1.0",
22
22
  "pretty-hrtime": "^1.0.3",
23
23
  "semver": "^7.6.3",
24
- "update-notifier": "7.1.0",
24
+ "update-notifier": "^7.2.0",
25
25
  "yargs": "^17.7.2"
26
26
  },
27
27
  "bin": {
@@ -515,9 +515,9 @@
515
515
  "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="
516
516
  },
517
517
  "node_modules/@pnpm/npm-conf": {
518
- "version": "2.2.2",
519
- "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz",
520
- "integrity": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==",
518
+ "version": "2.3.1",
519
+ "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz",
520
+ "integrity": "sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==",
521
521
  "dependencies": {
522
522
  "@pnpm/config.env-replace": "^1.1.0",
523
523
  "@pnpm/network.ca-file": "^1.0.1",
@@ -654,14 +654,14 @@
654
654
  "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA=="
655
655
  },
656
656
  "node_modules/@ui5/builder": {
657
- "version": "4.0.1",
658
- "resolved": "https://registry.npmjs.org/@ui5/builder/-/builder-4.0.1.tgz",
659
- "integrity": "sha512-9FOkRCXcECjYLaCI1GmgFa4QUi2FOnS0iGPlkKmyAhckwks6VAb18zPHOV3RA/cZv8vpa2F3LoLPBod+d+fBxw==",
657
+ "version": "4.0.2",
658
+ "resolved": "https://registry.npmjs.org/@ui5/builder/-/builder-4.0.2.tgz",
659
+ "integrity": "sha512-dO60oanh7rDojmGvvz9cynOOL7GErsBhrokEtYuQcnHM+OnY+xwvVQEoQ8MylrCPtc5GOTB6wQR+zu4i6JlsOQ==",
660
660
  "dependencies": {
661
661
  "@jridgewell/sourcemap-codec": "^1.5.0",
662
662
  "@ui5/fs": "^4.0.0",
663
663
  "@ui5/logger": "^4.0.1",
664
- "cheerio": "1.0.0-rc.12",
664
+ "cheerio": "1.0.0",
665
665
  "escape-unicode": "^0.2.0",
666
666
  "escope": "^4.0.0",
667
667
  "espree": "^10.1.0",
@@ -671,7 +671,7 @@
671
671
  "pretty-data": "^0.40.0",
672
672
  "rimraf": "^6.0.1",
673
673
  "semver": "^7.6.3",
674
- "terser": "^5.31.3",
674
+ "terser": "^5.31.6",
675
675
  "workerpool": "^9.1.3",
676
676
  "xml2js": "^0.6.2"
677
677
  },
@@ -756,9 +756,9 @@
756
756
  }
757
757
  },
758
758
  "node_modules/@ui5/server": {
759
- "version": "4.0.2",
760
- "resolved": "https://registry.npmjs.org/@ui5/server/-/server-4.0.2.tgz",
761
- "integrity": "sha512-5Z4KAzSv+7nkhV6jM/ekl4U858UGxWMKzipx7BjyWBFpGiDFXP9iDnVTdpBpkONL7BhT6JTsvn7poiC1y8hRWw==",
759
+ "version": "4.0.3",
760
+ "resolved": "https://registry.npmjs.org/@ui5/server/-/server-4.0.3.tgz",
761
+ "integrity": "sha512-OkI2StioAep+rYhxeu3v+J9KUGF9fvy2YLOUUI/HGV22E50ys+WW5B+9ynVH11Gv5ZgoIt5wqcvB8YlSc5Q2cA==",
762
762
  "dependencies": {
763
763
  "@ui5/builder": "^4.0.1",
764
764
  "@ui5/fs": "^4.0.0",
@@ -915,6 +915,15 @@
915
915
  "lodash": "^4.17.14"
916
916
  }
917
917
  },
918
+ "node_modules/atomically": {
919
+ "version": "2.0.3",
920
+ "resolved": "https://registry.npmjs.org/atomically/-/atomically-2.0.3.tgz",
921
+ "integrity": "sha512-kU6FmrwZ3Lx7/7y3hPS5QnbJfaohcIul5fGqf7ok+4KklIEk9tJ0C2IQPdacSbVUWv6zVHXEBWoWd6NrVMT7Cw==",
922
+ "dependencies": {
923
+ "stubborn-fs": "^1.2.5",
924
+ "when-exit": "^2.1.1"
925
+ }
926
+ },
918
927
  "node_modules/balanced-match": {
919
928
  "version": "1.0.2",
920
929
  "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
@@ -967,69 +976,85 @@
967
976
  "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
968
977
  },
969
978
  "node_modules/boxen": {
970
- "version": "7.1.1",
971
- "resolved": "https://registry.npmjs.org/boxen/-/boxen-7.1.1.tgz",
972
- "integrity": "sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==",
979
+ "version": "8.0.1",
980
+ "resolved": "https://registry.npmjs.org/boxen/-/boxen-8.0.1.tgz",
981
+ "integrity": "sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==",
973
982
  "dependencies": {
974
983
  "ansi-align": "^3.0.1",
975
- "camelcase": "^7.0.1",
976
- "chalk": "^5.2.0",
984
+ "camelcase": "^8.0.0",
985
+ "chalk": "^5.3.0",
977
986
  "cli-boxes": "^3.0.0",
978
- "string-width": "^5.1.2",
979
- "type-fest": "^2.13.0",
980
- "widest-line": "^4.0.1",
981
- "wrap-ansi": "^8.1.0"
987
+ "string-width": "^7.2.0",
988
+ "type-fest": "^4.21.0",
989
+ "widest-line": "^5.0.0",
990
+ "wrap-ansi": "^9.0.0"
982
991
  },
983
992
  "engines": {
984
- "node": ">=14.16"
993
+ "node": ">=18"
985
994
  },
986
995
  "funding": {
987
996
  "url": "https://github.com/sponsors/sindresorhus"
988
997
  }
989
998
  },
990
999
  "node_modules/boxen/node_modules/camelcase": {
991
- "version": "7.0.1",
992
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz",
993
- "integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==",
1000
+ "version": "8.0.0",
1001
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-8.0.0.tgz",
1002
+ "integrity": "sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==",
994
1003
  "engines": {
995
- "node": ">=14.16"
1004
+ "node": ">=16"
996
1005
  },
997
1006
  "funding": {
998
1007
  "url": "https://github.com/sponsors/sindresorhus"
999
1008
  }
1000
1009
  },
1001
1010
  "node_modules/boxen/node_modules/emoji-regex": {
1002
- "version": "9.2.2",
1003
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
1004
- "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
1011
+ "version": "10.3.0",
1012
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz",
1013
+ "integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw=="
1005
1014
  },
1006
1015
  "node_modules/boxen/node_modules/string-width": {
1007
- "version": "5.1.2",
1008
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
1009
- "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
1016
+ "version": "7.2.0",
1017
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
1018
+ "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
1010
1019
  "dependencies": {
1011
- "eastasianwidth": "^0.2.0",
1012
- "emoji-regex": "^9.2.2",
1013
- "strip-ansi": "^7.0.1"
1020
+ "emoji-regex": "^10.3.0",
1021
+ "get-east-asian-width": "^1.0.0",
1022
+ "strip-ansi": "^7.1.0"
1014
1023
  },
1015
1024
  "engines": {
1016
- "node": ">=12"
1025
+ "node": ">=18"
1017
1026
  },
1018
1027
  "funding": {
1019
1028
  "url": "https://github.com/sponsors/sindresorhus"
1020
1029
  }
1021
1030
  },
1022
1031
  "node_modules/boxen/node_modules/type-fest": {
1023
- "version": "2.19.0",
1024
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
1025
- "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==",
1032
+ "version": "4.25.0",
1033
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.25.0.tgz",
1034
+ "integrity": "sha512-bRkIGlXsnGBRBQRAY56UXBm//9qH4bmJfFvq83gSz41N282df+fjy8ofcEgc1sM8geNt5cl6mC2g9Fht1cs8Aw==",
1026
1035
  "engines": {
1027
- "node": ">=12.20"
1036
+ "node": ">=16"
1028
1037
  },
1029
1038
  "funding": {
1030
1039
  "url": "https://github.com/sponsors/sindresorhus"
1031
1040
  }
1032
1041
  },
1042
+ "node_modules/boxen/node_modules/wrap-ansi": {
1043
+ "version": "9.0.0",
1044
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz",
1045
+ "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==",
1046
+ "dependencies": {
1047
+ "ansi-styles": "^6.2.1",
1048
+ "string-width": "^7.0.0",
1049
+ "strip-ansi": "^7.1.0"
1050
+ },
1051
+ "engines": {
1052
+ "node": ">=18"
1053
+ },
1054
+ "funding": {
1055
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
1056
+ }
1057
+ },
1033
1058
  "node_modules/brace-expansion": {
1034
1059
  "version": "2.0.1",
1035
1060
  "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
@@ -1117,20 +1142,24 @@
1117
1142
  }
1118
1143
  },
1119
1144
  "node_modules/cheerio": {
1120
- "version": "1.0.0-rc.12",
1121
- "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz",
1122
- "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==",
1145
+ "version": "1.0.0",
1146
+ "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0.tgz",
1147
+ "integrity": "sha512-quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww==",
1123
1148
  "dependencies": {
1124
1149
  "cheerio-select": "^2.1.0",
1125
1150
  "dom-serializer": "^2.0.0",
1126
1151
  "domhandler": "^5.0.3",
1127
- "domutils": "^3.0.1",
1128
- "htmlparser2": "^8.0.1",
1129
- "parse5": "^7.0.0",
1130
- "parse5-htmlparser2-tree-adapter": "^7.0.0"
1152
+ "domutils": "^3.1.0",
1153
+ "encoding-sniffer": "^0.2.0",
1154
+ "htmlparser2": "^9.1.0",
1155
+ "parse5": "^7.1.2",
1156
+ "parse5-htmlparser2-tree-adapter": "^7.0.0",
1157
+ "parse5-parser-stream": "^7.1.2",
1158
+ "undici": "^6.19.5",
1159
+ "whatwg-mimetype": "^4.0.0"
1131
1160
  },
1132
1161
  "engines": {
1133
- "node": ">= 6"
1162
+ "node": ">=18.17"
1134
1163
  },
1135
1164
  "funding": {
1136
1165
  "url": "https://github.com/cheeriojs/cheerio?sponsor=1"
@@ -1377,39 +1406,22 @@
1377
1406
  "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
1378
1407
  },
1379
1408
  "node_modules/configstore": {
1380
- "version": "6.0.0",
1381
- "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz",
1382
- "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==",
1409
+ "version": "7.0.0",
1410
+ "resolved": "https://registry.npmjs.org/configstore/-/configstore-7.0.0.tgz",
1411
+ "integrity": "sha512-yk7/5PN5im4qwz0WFZW3PXnzHgPu9mX29Y8uZ3aefe2lBPC1FYttWZRcaW9fKkT0pBCJyuQ2HfbmPVaODi9jcQ==",
1383
1412
  "dependencies": {
1384
- "dot-prop": "^6.0.1",
1385
- "graceful-fs": "^4.2.6",
1386
- "unique-string": "^3.0.0",
1387
- "write-file-atomic": "^3.0.3",
1388
- "xdg-basedir": "^5.0.1"
1413
+ "atomically": "^2.0.3",
1414
+ "dot-prop": "^9.0.0",
1415
+ "graceful-fs": "^4.2.11",
1416
+ "xdg-basedir": "^5.1.0"
1389
1417
  },
1390
1418
  "engines": {
1391
- "node": ">=12"
1419
+ "node": ">=18"
1392
1420
  },
1393
1421
  "funding": {
1394
1422
  "url": "https://github.com/yeoman/configstore?sponsor=1"
1395
1423
  }
1396
1424
  },
1397
- "node_modules/configstore/node_modules/signal-exit": {
1398
- "version": "3.0.7",
1399
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
1400
- "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
1401
- },
1402
- "node_modules/configstore/node_modules/write-file-atomic": {
1403
- "version": "3.0.3",
1404
- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
1405
- "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
1406
- "dependencies": {
1407
- "imurmurhash": "^0.1.4",
1408
- "is-typedarray": "^1.0.0",
1409
- "signal-exit": "^3.0.2",
1410
- "typedarray-to-buffer": "^3.1.5"
1411
- }
1412
- },
1413
1425
  "node_modules/content-disposition": {
1414
1426
  "version": "0.5.4",
1415
1427
  "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
@@ -1510,31 +1522,6 @@
1510
1522
  "node": ">= 8"
1511
1523
  }
1512
1524
  },
1513
- "node_modules/crypto-random-string": {
1514
- "version": "4.0.0",
1515
- "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz",
1516
- "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==",
1517
- "dependencies": {
1518
- "type-fest": "^1.0.1"
1519
- },
1520
- "engines": {
1521
- "node": ">=12"
1522
- },
1523
- "funding": {
1524
- "url": "https://github.com/sponsors/sindresorhus"
1525
- }
1526
- },
1527
- "node_modules/crypto-random-string/node_modules/type-fest": {
1528
- "version": "1.4.0",
1529
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz",
1530
- "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==",
1531
- "engines": {
1532
- "node": ">=10"
1533
- },
1534
- "funding": {
1535
- "url": "https://github.com/sponsors/sindresorhus"
1536
- }
1537
- },
1538
1525
  "node_modules/css-select": {
1539
1526
  "version": "5.1.0",
1540
1527
  "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz",
@@ -1753,14 +1740,25 @@
1753
1740
  }
1754
1741
  },
1755
1742
  "node_modules/dot-prop": {
1756
- "version": "6.0.1",
1757
- "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz",
1758
- "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==",
1743
+ "version": "9.0.0",
1744
+ "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-9.0.0.tgz",
1745
+ "integrity": "sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==",
1759
1746
  "dependencies": {
1760
- "is-obj": "^2.0.0"
1747
+ "type-fest": "^4.18.2"
1761
1748
  },
1762
1749
  "engines": {
1763
- "node": ">=10"
1750
+ "node": ">=18"
1751
+ },
1752
+ "funding": {
1753
+ "url": "https://github.com/sponsors/sindresorhus"
1754
+ }
1755
+ },
1756
+ "node_modules/dot-prop/node_modules/type-fest": {
1757
+ "version": "4.25.0",
1758
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.25.0.tgz",
1759
+ "integrity": "sha512-bRkIGlXsnGBRBQRAY56UXBm//9qH4bmJfFvq83gSz41N282df+fjy8ofcEgc1sM8geNt5cl6mC2g9Fht1cs8Aw==",
1760
+ "engines": {
1761
+ "node": ">=16"
1764
1762
  },
1765
1763
  "funding": {
1766
1764
  "url": "https://github.com/sponsors/sindresorhus"
@@ -1798,6 +1796,29 @@
1798
1796
  "iconv-lite": "^0.6.2"
1799
1797
  }
1800
1798
  },
1799
+ "node_modules/encoding-sniffer": {
1800
+ "version": "0.2.0",
1801
+ "resolved": "https://registry.npmjs.org/encoding-sniffer/-/encoding-sniffer-0.2.0.tgz",
1802
+ "integrity": "sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==",
1803
+ "dependencies": {
1804
+ "iconv-lite": "^0.6.3",
1805
+ "whatwg-encoding": "^3.1.1"
1806
+ },
1807
+ "funding": {
1808
+ "url": "https://github.com/fb55/encoding-sniffer?sponsor=1"
1809
+ }
1810
+ },
1811
+ "node_modules/encoding-sniffer/node_modules/iconv-lite": {
1812
+ "version": "0.6.3",
1813
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
1814
+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
1815
+ "dependencies": {
1816
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
1817
+ },
1818
+ "engines": {
1819
+ "node": ">=0.10.0"
1820
+ }
1821
+ },
1801
1822
  "node_modules/encoding/node_modules/iconv-lite": {
1802
1823
  "version": "0.6.3",
1803
1824
  "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
@@ -1908,6 +1929,17 @@
1908
1929
  "node": ">=4.0"
1909
1930
  }
1910
1931
  },
1932
+ "node_modules/eslint-visitor-keys": {
1933
+ "version": "4.0.0",
1934
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz",
1935
+ "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==",
1936
+ "engines": {
1937
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1938
+ },
1939
+ "funding": {
1940
+ "url": "https://opencollective.com/eslint"
1941
+ }
1942
+ },
1911
1943
  "node_modules/espree": {
1912
1944
  "version": "10.1.0",
1913
1945
  "resolved": "https://registry.npmjs.org/espree/-/espree-10.1.0.tgz",
@@ -1924,17 +1956,6 @@
1924
1956
  "url": "https://opencollective.com/eslint"
1925
1957
  }
1926
1958
  },
1927
- "node_modules/espree/node_modules/eslint-visitor-keys": {
1928
- "version": "4.0.0",
1929
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz",
1930
- "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==",
1931
- "engines": {
1932
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1933
- },
1934
- "funding": {
1935
- "url": "https://opencollective.com/eslint"
1936
- }
1937
- },
1938
1959
  "node_modules/esrecurse": {
1939
1960
  "version": "4.3.0",
1940
1961
  "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
@@ -2160,9 +2181,9 @@
2160
2181
  }
2161
2182
  },
2162
2183
  "node_modules/foreground-child": {
2163
- "version": "3.2.1",
2164
- "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz",
2165
- "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==",
2184
+ "version": "3.3.0",
2185
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz",
2186
+ "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==",
2166
2187
  "dependencies": {
2167
2188
  "cross-spawn": "^7.0.0",
2168
2189
  "signal-exit": "^4.0.1"
@@ -2217,6 +2238,17 @@
2217
2238
  "node": "6.* || 8.* || >= 10.*"
2218
2239
  }
2219
2240
  },
2241
+ "node_modules/get-east-asian-width": {
2242
+ "version": "1.2.0",
2243
+ "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz",
2244
+ "integrity": "sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==",
2245
+ "engines": {
2246
+ "node": ">=18"
2247
+ },
2248
+ "funding": {
2249
+ "url": "https://github.com/sponsors/sindresorhus"
2250
+ }
2251
+ },
2220
2252
  "node_modules/get-intrinsic": {
2221
2253
  "version": "1.2.4",
2222
2254
  "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz",
@@ -2468,9 +2500,9 @@
2468
2500
  }
2469
2501
  },
2470
2502
  "node_modules/htmlparser2": {
2471
- "version": "8.0.2",
2472
- "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz",
2473
- "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==",
2503
+ "version": "9.1.0",
2504
+ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-9.1.0.tgz",
2505
+ "integrity": "sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==",
2474
2506
  "funding": [
2475
2507
  "https://github.com/fb55/htmlparser2?sponsor=1",
2476
2508
  {
@@ -2481,8 +2513,8 @@
2481
2513
  "dependencies": {
2482
2514
  "domelementtype": "^2.3.0",
2483
2515
  "domhandler": "^5.0.3",
2484
- "domutils": "^3.0.1",
2485
- "entities": "^4.4.0"
2516
+ "domutils": "^3.1.0",
2517
+ "entities": "^4.5.0"
2486
2518
  }
2487
2519
  },
2488
2520
  "node_modules/http-cache-semantics": {
@@ -2545,9 +2577,9 @@
2545
2577
  }
2546
2578
  },
2547
2579
  "node_modules/ignore": {
2548
- "version": "5.3.1",
2549
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz",
2550
- "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==",
2580
+ "version": "5.3.2",
2581
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
2582
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
2551
2583
  "engines": {
2552
2584
  "node": ">= 4"
2553
2585
  }
@@ -2714,9 +2746,9 @@
2714
2746
  }
2715
2747
  },
2716
2748
  "node_modules/is-in-ci": {
2717
- "version": "0.1.0",
2718
- "resolved": "https://registry.npmjs.org/is-in-ci/-/is-in-ci-0.1.0.tgz",
2719
- "integrity": "sha512-d9PXLEY0v1iJ64xLiQMJ51J128EYHAaOR4yZqQi8aHGfw6KgifM3/Viw1oZZ1GCVmb3gBuyhLyHj0HgR2DhSXQ==",
2749
+ "version": "1.0.0",
2750
+ "resolved": "https://registry.npmjs.org/is-in-ci/-/is-in-ci-1.0.0.tgz",
2751
+ "integrity": "sha512-eUuAjybVTHMYWm/U+vBO1sY/JOCgoPCXRxzdju0K+K0BiGW0SChEL1MLC0PoCIR1OlPo5YAp8HuQoUlsWEICwg==",
2720
2752
  "bin": {
2721
2753
  "is-in-ci": "cli.js"
2722
2754
  },
@@ -2802,19 +2834,6 @@
2802
2834
  "lodash.isfinite": "^3.3.2"
2803
2835
  }
2804
2836
  },
2805
- "node_modules/is-obj": {
2806
- "version": "2.0.0",
2807
- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
2808
- "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
2809
- "engines": {
2810
- "node": ">=8"
2811
- }
2812
- },
2813
- "node_modules/is-typedarray": {
2814
- "version": "1.0.0",
2815
- "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
2816
- "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="
2817
- },
2818
2837
  "node_modules/is-unicode-supported": {
2819
2838
  "version": "2.0.0",
2820
2839
  "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.0.0.tgz",
@@ -2962,9 +2981,9 @@
2962
2981
  }
2963
2982
  },
2964
2983
  "node_modules/ky": {
2965
- "version": "1.5.0",
2966
- "resolved": "https://registry.npmjs.org/ky/-/ky-1.5.0.tgz",
2967
- "integrity": "sha512-bkQo+UqryW6Zmo/DsixYZE4Z9t2mzvNMhceyIhuMuInb3knm5Q+GNGMKveydJAj+Z6piN1SwI6eR/V0G+Z0BtA==",
2984
+ "version": "1.7.0",
2985
+ "resolved": "https://registry.npmjs.org/ky/-/ky-1.7.0.tgz",
2986
+ "integrity": "sha512-g+S6ZMESSMuxrrbcDioBKSjBj8Xvam2WmLso+q1Ub7TTYCGS68XbSEM+eA3VSTmXJfR1uQjsTooC2tCsC3bW6g==",
2968
2987
  "engines": {
2969
2988
  "node": ">=18"
2970
2989
  },
@@ -3841,6 +3860,17 @@
3841
3860
  "url": "https://github.com/inikulin/parse5?sponsor=1"
3842
3861
  }
3843
3862
  },
3863
+ "node_modules/parse5-parser-stream": {
3864
+ "version": "7.1.2",
3865
+ "resolved": "https://registry.npmjs.org/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz",
3866
+ "integrity": "sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==",
3867
+ "dependencies": {
3868
+ "parse5": "^7.0.0"
3869
+ },
3870
+ "funding": {
3871
+ "url": "https://github.com/inikulin/parse5?sponsor=1"
3872
+ }
3873
+ },
3844
3874
  "node_modules/parseurl": {
3845
3875
  "version": "1.3.3",
3846
3876
  "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
@@ -4128,9 +4158,9 @@
4128
4158
  }
4129
4159
  },
4130
4160
  "node_modules/read-package-up/node_modules/type-fest": {
4131
- "version": "4.23.0",
4132
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.23.0.tgz",
4133
- "integrity": "sha512-ZiBujro2ohr5+Z/hZWHESLz3g08BBdrdLMieYFULJO+tWc437sn8kQsWLJoZErY8alNhxre9K4p3GURAG11n+w==",
4161
+ "version": "4.25.0",
4162
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.25.0.tgz",
4163
+ "integrity": "sha512-bRkIGlXsnGBRBQRAY56UXBm//9qH4bmJfFvq83gSz41N282df+fjy8ofcEgc1sM8geNt5cl6mC2g9Fht1cs8Aw==",
4134
4164
  "engines": {
4135
4165
  "node": ">=16"
4136
4166
  },
@@ -4173,9 +4203,9 @@
4173
4203
  }
4174
4204
  },
4175
4205
  "node_modules/read-pkg/node_modules/type-fest": {
4176
- "version": "4.23.0",
4177
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.23.0.tgz",
4178
- "integrity": "sha512-ZiBujro2ohr5+Z/hZWHESLz3g08BBdrdLMieYFULJO+tWc437sn8kQsWLJoZErY8alNhxre9K4p3GURAG11n+w==",
4206
+ "version": "4.25.0",
4207
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.25.0.tgz",
4208
+ "integrity": "sha512-bRkIGlXsnGBRBQRAY56UXBm//9qH4bmJfFvq83gSz41N282df+fjy8ofcEgc1sM8geNt5cl6mC2g9Fht1cs8Aw==",
4179
4209
  "engines": {
4180
4210
  "node": ">=16"
4181
4211
  },
@@ -4963,6 +4993,11 @@
4963
4993
  "url": "https://github.com/sponsors/sindresorhus"
4964
4994
  }
4965
4995
  },
4996
+ "node_modules/stubborn-fs": {
4997
+ "version": "1.2.5",
4998
+ "resolved": "https://registry.npmjs.org/stubborn-fs/-/stubborn-fs-1.2.5.tgz",
4999
+ "integrity": "sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g=="
5000
+ },
4966
5001
  "node_modules/supports-preserve-symlinks-flag": {
4967
5002
  "version": "1.0.0",
4968
5003
  "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
@@ -5026,9 +5061,9 @@
5026
5061
  "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
5027
5062
  },
5028
5063
  "node_modules/terser": {
5029
- "version": "5.31.3",
5030
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.3.tgz",
5031
- "integrity": "sha512-pAfYn3NIZLyZpa83ZKigvj6Rn9c/vd5KfYGX7cN1mnzqgDcxWvrU5ZtAfIKhEXz9nRecw4z3LXkjaq96/qZqAA==",
5064
+ "version": "5.31.6",
5065
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.6.tgz",
5066
+ "integrity": "sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==",
5032
5067
  "dependencies": {
5033
5068
  "@jridgewell/source-map": "^0.3.3",
5034
5069
  "acorn": "^8.8.2",
@@ -5094,14 +5129,6 @@
5094
5129
  "node": ">= 0.6"
5095
5130
  }
5096
5131
  },
5097
- "node_modules/typedarray-to-buffer": {
5098
- "version": "3.1.5",
5099
- "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
5100
- "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
5101
- "dependencies": {
5102
- "is-typedarray": "^1.0.0"
5103
- }
5104
- },
5105
5132
  "node_modules/uc.micro": {
5106
5133
  "version": "2.1.0",
5107
5134
  "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz",
@@ -5112,6 +5139,14 @@
5112
5139
  "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.7.tgz",
5113
5140
  "integrity": "sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g=="
5114
5141
  },
5142
+ "node_modules/undici": {
5143
+ "version": "6.19.8",
5144
+ "resolved": "https://registry.npmjs.org/undici/-/undici-6.19.8.tgz",
5145
+ "integrity": "sha512-U8uCCl2x9TK3WANvmBavymRzxbfFYG+tAu+fgx3zxQy3qdagQqBLwJVrdyO1TBfUXvfKveMKJZhpvUYoOjM+4g==",
5146
+ "engines": {
5147
+ "node": ">=18.17"
5148
+ }
5149
+ },
5115
5150
  "node_modules/unicorn-magic": {
5116
5151
  "version": "0.1.0",
5117
5152
  "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz",
@@ -5145,20 +5180,6 @@
5145
5180
  "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
5146
5181
  }
5147
5182
  },
5148
- "node_modules/unique-string": {
5149
- "version": "3.0.0",
5150
- "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz",
5151
- "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==",
5152
- "dependencies": {
5153
- "crypto-random-string": "^4.0.0"
5154
- },
5155
- "engines": {
5156
- "node": ">=12"
5157
- },
5158
- "funding": {
5159
- "url": "https://github.com/sponsors/sindresorhus"
5160
- }
5161
- },
5162
5183
  "node_modules/unpipe": {
5163
5184
  "version": "1.0.0",
5164
5185
  "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
@@ -5168,20 +5189,20 @@
5168
5189
  }
5169
5190
  },
5170
5191
  "node_modules/update-notifier": {
5171
- "version": "7.1.0",
5172
- "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-7.1.0.tgz",
5173
- "integrity": "sha512-8SV3rIqVY6EFC1WxH6L0j55s0MO79MFBS1pivmInRJg3pCEDgWHBj1Q6XByTtCLOZIFA0f6zoG9ZWf2Ks9lvTA==",
5192
+ "version": "7.2.0",
5193
+ "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-7.2.0.tgz",
5194
+ "integrity": "sha512-GoBCFKIbF88latQyk8HpHUoJHqZUzYSPI6BySAjs5TWd/TCTMynAsIfGfJ6Ep2DAx6O5YExYGPs3Hdnt2TWdzQ==",
5174
5195
  "dependencies": {
5175
- "boxen": "^7.1.1",
5196
+ "boxen": "^8.0.0",
5176
5197
  "chalk": "^5.3.0",
5177
- "configstore": "^6.0.0",
5198
+ "configstore": "^7.0.0",
5178
5199
  "import-lazy": "^4.0.0",
5179
- "is-in-ci": "^0.1.0",
5200
+ "is-in-ci": "^1.0.0",
5180
5201
  "is-installed-globally": "^1.0.0",
5181
5202
  "is-npm": "^6.0.0",
5182
5203
  "latest-version": "^9.0.0",
5183
5204
  "pupa": "^3.1.0",
5184
- "semver": "^7.6.2",
5205
+ "semver": "^7.6.3",
5185
5206
  "semver-diff": "^4.0.0",
5186
5207
  "xdg-basedir": "^5.1.0"
5187
5208
  },
@@ -5260,6 +5281,41 @@
5260
5281
  "minimalistic-assert": "^1.0.0"
5261
5282
  }
5262
5283
  },
5284
+ "node_modules/whatwg-encoding": {
5285
+ "version": "3.1.1",
5286
+ "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
5287
+ "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==",
5288
+ "dependencies": {
5289
+ "iconv-lite": "0.6.3"
5290
+ },
5291
+ "engines": {
5292
+ "node": ">=18"
5293
+ }
5294
+ },
5295
+ "node_modules/whatwg-encoding/node_modules/iconv-lite": {
5296
+ "version": "0.6.3",
5297
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
5298
+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
5299
+ "dependencies": {
5300
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
5301
+ },
5302
+ "engines": {
5303
+ "node": ">=0.10.0"
5304
+ }
5305
+ },
5306
+ "node_modules/whatwg-mimetype": {
5307
+ "version": "4.0.0",
5308
+ "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz",
5309
+ "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==",
5310
+ "engines": {
5311
+ "node": ">=18"
5312
+ }
5313
+ },
5314
+ "node_modules/when-exit": {
5315
+ "version": "2.1.3",
5316
+ "resolved": "https://registry.npmjs.org/when-exit/-/when-exit-2.1.3.tgz",
5317
+ "integrity": "sha512-uVieSTccFIr/SFQdFWN/fFaQYmV37OKtuaGphMAzi4DmmUlrvRBJW5WSLkHyjNQY/ePJMz3LoiX9R3yy1Su6Hw=="
5318
+ },
5263
5319
  "node_modules/which": {
5264
5320
  "version": "4.0.0",
5265
5321
  "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz",
@@ -5275,35 +5331,35 @@
5275
5331
  }
5276
5332
  },
5277
5333
  "node_modules/widest-line": {
5278
- "version": "4.0.1",
5279
- "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz",
5280
- "integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==",
5334
+ "version": "5.0.0",
5335
+ "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-5.0.0.tgz",
5336
+ "integrity": "sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==",
5281
5337
  "dependencies": {
5282
- "string-width": "^5.0.1"
5338
+ "string-width": "^7.0.0"
5283
5339
  },
5284
5340
  "engines": {
5285
- "node": ">=12"
5341
+ "node": ">=18"
5286
5342
  },
5287
5343
  "funding": {
5288
5344
  "url": "https://github.com/sponsors/sindresorhus"
5289
5345
  }
5290
5346
  },
5291
5347
  "node_modules/widest-line/node_modules/emoji-regex": {
5292
- "version": "9.2.2",
5293
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
5294
- "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
5348
+ "version": "10.3.0",
5349
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz",
5350
+ "integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw=="
5295
5351
  },
5296
5352
  "node_modules/widest-line/node_modules/string-width": {
5297
- "version": "5.1.2",
5298
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
5299
- "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
5353
+ "version": "7.2.0",
5354
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
5355
+ "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
5300
5356
  "dependencies": {
5301
- "eastasianwidth": "^0.2.0",
5302
- "emoji-regex": "^9.2.2",
5303
- "strip-ansi": "^7.0.1"
5357
+ "emoji-regex": "^10.3.0",
5358
+ "get-east-asian-width": "^1.0.0",
5359
+ "strip-ansi": "^7.1.0"
5304
5360
  },
5305
5361
  "engines": {
5306
- "node": ">=12"
5362
+ "node": ">=18"
5307
5363
  },
5308
5364
  "funding": {
5309
5365
  "url": "https://github.com/sponsors/sindresorhus"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/cli",
3
- "version": "4.0.3",
3
+ "version": "4.0.5",
4
4
  "description": "UI5 Tooling - CLI",
5
5
  "author": {
6
6
  "name": "SAP SE",
@@ -83,7 +83,6 @@
83
83
  "jsdocs/**",
84
84
  "coverage/**",
85
85
  "test/**",
86
- ".eslintrc.cjs",
87
86
  "jsdoc-plugin.cjs"
88
87
  ],
89
88
  "check-coverage": true,
@@ -117,11 +116,11 @@
117
116
  "url": "git@github.com:SAP/ui5-cli.git"
118
117
  },
119
118
  "dependencies": {
120
- "@ui5/builder": "^4.0.1",
119
+ "@ui5/builder": "^4.0.2",
121
120
  "@ui5/fs": "^4.0.0",
122
121
  "@ui5/logger": "^4.0.1",
123
122
  "@ui5/project": "^4.0.2",
124
- "@ui5/server": "^4.0.2",
123
+ "@ui5/server": "^4.0.3",
125
124
  "chalk": "^5.3.0",
126
125
  "data-with-position": "^0.5.0",
127
126
  "import-local": "^3.2.0",
@@ -129,22 +128,24 @@
129
128
  "open": "^10.1.0",
130
129
  "pretty-hrtime": "^1.0.3",
131
130
  "semver": "^7.6.3",
132
- "update-notifier": "7.1.0",
131
+ "update-notifier": "^7.2.0",
133
132
  "yargs": "^17.7.2"
134
133
  },
135
134
  "devDependencies": {
135
+ "@eslint/js": "^9.8.0",
136
136
  "@istanbuljs/esm-loader-hook": "^0.2.0",
137
137
  "ava": "^6.1.3",
138
138
  "chokidar-cli": "^3.0.0",
139
139
  "cross-env": "^7.0.3",
140
140
  "depcheck": "^1.4.7",
141
141
  "docdash": "^2.0.2",
142
- "eslint": "^8.57.0",
142
+ "eslint": "^9.9.0",
143
143
  "eslint-config-google": "^0.14.0",
144
- "eslint-plugin-ava": "^14.0.0",
145
- "eslint-plugin-jsdoc": "^48.10.2",
144
+ "eslint-plugin-ava": "^15.0.1",
145
+ "eslint-plugin-jsdoc": "^50.2.2",
146
146
  "esmock": "^2.6.7",
147
- "execa": "^9.3.0",
147
+ "execa": "^9.3.1",
148
+ "globals": "^15.9.0",
148
149
  "jsdoc": "^4.0.3",
149
150
  "licensee": "^10.0.0",
150
151
  "nyc": "^17.0.0",