@ui5/cli 3.7.2 → 3.8.0
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 +18 -2
- package/lib/cli/commands/build.js +18 -1
- package/lib/init/init.js +1 -1
- package/npm-shrinkwrap.json +99 -136
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,10 +2,24 @@
|
|
|
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/v3.
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-cli/compare/v3.8.0...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v3.8.0"></a>
|
|
8
|
+
## [v3.8.0] - 2023-12-12
|
|
9
|
+
### Dependency Updates
|
|
10
|
+
- Bump [@ui5](https://github.com/ui5)/project from 3.8.0 to 3.9.0 [`09f1ea9`](https://github.com/SAP/ui5-cli/commit/09f1ea9310d95636a87a6017a5d264594234b798)
|
|
11
|
+
- Bump [@ui5](https://github.com/ui5)/server from 3.1.4 to 3.1.5 [`191b80c`](https://github.com/SAP/ui5-cli/commit/191b80c123840a7556385f08a964bf0f514813a7)
|
|
12
|
+
- Bump [@ui5](https://github.com/ui5)/builder from 3.1.1 to 3.2.0 [`d63a77e`](https://github.com/SAP/ui5-cli/commit/d63a77ec25c98f1f2c2ba3dbbfc69aea95c5ea6a)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
- Add option to redefine output directory structure ([#665](https://github.com/SAP/ui5-cli/issues/665)) [`388dc79`](https://github.com/SAP/ui5-cli/commit/388dc793fe2344f1f59717f3a9d1ea230b0337dd)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
<a name="v3.7.3"></a>
|
|
19
|
+
## [v3.7.3] - 2023-12-01
|
|
6
20
|
|
|
7
21
|
<a name="v3.7.2"></a>
|
|
8
|
-
## [v3.7.2] - 2023-11-
|
|
22
|
+
## [v3.7.2] - 2023-11-21
|
|
9
23
|
### Bug Fixes
|
|
10
24
|
- **ui5 init:** Improve error message ([#661](https://github.com/SAP/ui5-cli/issues/661)) [`07e68b0`](https://github.com/SAP/ui5-cli/commit/07e68b00ff5cd2e80c0b1b52fa644e27752ccecb)
|
|
11
25
|
- **ui5.yaml:** Use double quotes for string values ([#660](https://github.com/SAP/ui5-cli/issues/660)) [`c30e371`](https://github.com/SAP/ui5-cli/commit/c30e371be147d859539afbe9a44cc03202a8c870)
|
|
@@ -1146,6 +1160,8 @@ Only Node.js v10 or higher is supported.
|
|
|
1146
1160
|
|
|
1147
1161
|
<a name="v0.0.1"></a>
|
|
1148
1162
|
## v0.0.1 - 2018-06-06
|
|
1163
|
+
[v3.8.0]: https://github.com/SAP/ui5-cli/compare/v3.7.3...v3.8.0
|
|
1164
|
+
[v3.7.3]: https://github.com/SAP/ui5-cli/compare/v3.7.2...v3.7.3
|
|
1149
1165
|
[v3.7.2]: https://github.com/SAP/ui5-cli/compare/v3.7.1...v3.7.2
|
|
1150
1166
|
[v3.7.1]: https://github.com/SAP/ui5-cli/compare/v3.7.0...v3.7.1
|
|
1151
1167
|
[v3.7.0]: https://github.com/SAP/ui5-cli/compare/v3.6.1...v3.7.0
|
|
@@ -121,6 +121,22 @@ build.builder = function(cli) {
|
|
|
121
121
|
default: false,
|
|
122
122
|
type: "boolean"
|
|
123
123
|
})
|
|
124
|
+
.option("output-style", {
|
|
125
|
+
describe:
|
|
126
|
+
"Processes build results into a specific directory structure. \r\n\r\n" +
|
|
127
|
+
"- Flat: Omits the project namespace and the \"resources\" directory.\r\n" +
|
|
128
|
+
"- Namespace: Respects the project namespace and the \"resources\" directory, " +
|
|
129
|
+
"maintaining the original structure.\r\n" +
|
|
130
|
+
"- Default: The default directory structure for every project type. For applications, " +
|
|
131
|
+
"this is identical to \"Flat\", and for libraries, it is \"Namespace\". Other types have a " +
|
|
132
|
+
"more distinct default output style.",
|
|
133
|
+
type: "string",
|
|
134
|
+
default: "Default",
|
|
135
|
+
choices: ["Default", "Flat", "Namespace"],
|
|
136
|
+
})
|
|
137
|
+
.coerce("output-style", (opt) => {
|
|
138
|
+
return opt.charAt(0).toUpperCase() + opt.slice(1).toLowerCase();
|
|
139
|
+
})
|
|
124
140
|
.example("ui5 build", "Preload build for project without dependencies")
|
|
125
141
|
.example("ui5 build self-contained", "Self-contained build for project")
|
|
126
142
|
.example("ui5 build --exclude-task=* --include-task=minify generateComponentPreload",
|
|
@@ -176,7 +192,8 @@ async function handleBuild(argv) {
|
|
|
176
192
|
jsdoc: command === "jsdoc",
|
|
177
193
|
includedTasks: argv["include-task"],
|
|
178
194
|
excludedTasks: argv["exclude-task"],
|
|
179
|
-
cssVariables: argv["experimental-css-variables"]
|
|
195
|
+
cssVariables: argv["experimental-css-variables"],
|
|
196
|
+
outputStyle: argv["output-style"],
|
|
180
197
|
});
|
|
181
198
|
}
|
|
182
199
|
|
package/lib/init/init.js
CHANGED
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.8.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@ui5/cli",
|
|
9
|
-
"version": "3.
|
|
9
|
+
"version": "3.8.0",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@ui5/builder": "^3.
|
|
12
|
+
"@ui5/builder": "^3.2.0",
|
|
13
13
|
"@ui5/fs": "^3.0.5",
|
|
14
14
|
"@ui5/logger": "^3.0.0",
|
|
15
|
-
"@ui5/project": "^3.
|
|
16
|
-
"@ui5/server": "^3.1.
|
|
15
|
+
"@ui5/project": "^3.9.0",
|
|
16
|
+
"@ui5/server": "^3.1.5",
|
|
17
17
|
"chalk": "^5.3.0",
|
|
18
18
|
"data-with-position": "^0.5.0",
|
|
19
19
|
"import-local": "^3.1.0",
|
|
@@ -34,16 +34,16 @@
|
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"node_modules/@adobe/css-tools": {
|
|
37
|
-
"version": "4.3.
|
|
38
|
-
"resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.
|
|
39
|
-
"integrity": "sha512
|
|
37
|
+
"version": "4.3.2",
|
|
38
|
+
"resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.2.tgz",
|
|
39
|
+
"integrity": "sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw=="
|
|
40
40
|
},
|
|
41
41
|
"node_modules/@babel/code-frame": {
|
|
42
|
-
"version": "7.
|
|
43
|
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.
|
|
44
|
-
"integrity": "sha512-
|
|
42
|
+
"version": "7.23.5",
|
|
43
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz",
|
|
44
|
+
"integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==",
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@babel/highlight": "^7.
|
|
46
|
+
"@babel/highlight": "^7.23.4",
|
|
47
47
|
"chalk": "^2.4.2"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
@@ -110,9 +110,9 @@
|
|
|
110
110
|
}
|
|
111
111
|
},
|
|
112
112
|
"node_modules/@babel/highlight": {
|
|
113
|
-
"version": "7.
|
|
114
|
-
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.
|
|
115
|
-
"integrity": "sha512-
|
|
113
|
+
"version": "7.23.4",
|
|
114
|
+
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz",
|
|
115
|
+
"integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==",
|
|
116
116
|
"dependencies": {
|
|
117
117
|
"@babel/helper-validator-identifier": "^7.22.20",
|
|
118
118
|
"chalk": "^2.4.2",
|
|
@@ -174,9 +174,9 @@
|
|
|
174
174
|
}
|
|
175
175
|
},
|
|
176
176
|
"node_modules/@babel/parser": {
|
|
177
|
-
"version": "7.23.
|
|
178
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.
|
|
179
|
-
"integrity": "sha512-
|
|
177
|
+
"version": "7.23.5",
|
|
178
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.5.tgz",
|
|
179
|
+
"integrity": "sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==",
|
|
180
180
|
"bin": {
|
|
181
181
|
"parser": "bin/babel-parser.js"
|
|
182
182
|
},
|
|
@@ -274,9 +274,9 @@
|
|
|
274
274
|
}
|
|
275
275
|
},
|
|
276
276
|
"node_modules/@jsdoc/salty": {
|
|
277
|
-
"version": "0.2.
|
|
278
|
-
"resolved": "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.
|
|
279
|
-
"integrity": "sha512-
|
|
277
|
+
"version": "0.2.7",
|
|
278
|
+
"resolved": "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.7.tgz",
|
|
279
|
+
"integrity": "sha512-mh8LbS9d4Jq84KLw8pzho7XC2q2/IJGiJss3xwRoLD1A+EE16SjN4PfaG4jRCzKegTFLlN0Zd8SdUPE6XdoPFg==",
|
|
280
280
|
"dependencies": {
|
|
281
281
|
"lodash": "^4.17.21"
|
|
282
282
|
},
|
|
@@ -332,20 +332,17 @@
|
|
|
332
332
|
}
|
|
333
333
|
},
|
|
334
334
|
"node_modules/@npmcli/agent/node_modules/lru-cache": {
|
|
335
|
-
"version": "10.0
|
|
336
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.
|
|
337
|
-
"integrity": "sha512
|
|
338
|
-
"dependencies": {
|
|
339
|
-
"semver": "^7.3.5"
|
|
340
|
-
},
|
|
335
|
+
"version": "10.1.0",
|
|
336
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz",
|
|
337
|
+
"integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==",
|
|
341
338
|
"engines": {
|
|
342
339
|
"node": "14 || >=16.14"
|
|
343
340
|
}
|
|
344
341
|
},
|
|
345
342
|
"node_modules/@npmcli/config": {
|
|
346
|
-
"version": "8.0.
|
|
347
|
-
"resolved": "https://registry.npmjs.org/@npmcli/config/-/config-8.0.
|
|
348
|
-
"integrity": "sha512-
|
|
343
|
+
"version": "8.0.3",
|
|
344
|
+
"resolved": "https://registry.npmjs.org/@npmcli/config/-/config-8.0.3.tgz",
|
|
345
|
+
"integrity": "sha512-rqRX7/UORvm2YRImY67kyfwD9rpi5+KXXb1j/cpTUKRcUqvpJ9/PMMc7Vv57JVqmrFj8siBBFEmXI3Gg7/TonQ==",
|
|
349
346
|
"dependencies": {
|
|
350
347
|
"@npmcli/map-workspaces": "^3.0.2",
|
|
351
348
|
"ci-info": "^4.0.0",
|
|
@@ -398,12 +395,9 @@
|
|
|
398
395
|
}
|
|
399
396
|
},
|
|
400
397
|
"node_modules/@npmcli/git/node_modules/lru-cache": {
|
|
401
|
-
"version": "10.0
|
|
402
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.
|
|
403
|
-
"integrity": "sha512
|
|
404
|
-
"dependencies": {
|
|
405
|
-
"semver": "^7.3.5"
|
|
406
|
-
},
|
|
398
|
+
"version": "10.1.0",
|
|
399
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz",
|
|
400
|
+
"integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==",
|
|
407
401
|
"engines": {
|
|
408
402
|
"node": "14 || >=16.14"
|
|
409
403
|
}
|
|
@@ -699,9 +693,9 @@
|
|
|
699
693
|
"integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA=="
|
|
700
694
|
},
|
|
701
695
|
"node_modules/@ui5/builder": {
|
|
702
|
-
"version": "3.
|
|
703
|
-
"resolved": "https://registry.npmjs.org/@ui5/builder/-/builder-3.
|
|
704
|
-
"integrity": "sha512-
|
|
696
|
+
"version": "3.2.0",
|
|
697
|
+
"resolved": "https://registry.npmjs.org/@ui5/builder/-/builder-3.2.0.tgz",
|
|
698
|
+
"integrity": "sha512-n6Z34iandeGPUS2x0OM7AdEvmnLbqqk9mfGuismuWx8gov2cawuJ/42B0BLamXRmlTqFPB7eGnaWry9tDK6h3Q==",
|
|
705
699
|
"dependencies": {
|
|
706
700
|
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
707
701
|
"@ui5/fs": "^3.0.5",
|
|
@@ -716,7 +710,7 @@
|
|
|
716
710
|
"pretty-data": "^0.40.0",
|
|
717
711
|
"rimraf": "^5.0.5",
|
|
718
712
|
"semver": "^7.5.4",
|
|
719
|
-
"terser": "^5.
|
|
713
|
+
"terser": "^5.26.0",
|
|
720
714
|
"workerpool": "^6.5.1",
|
|
721
715
|
"xml2js": "^0.6.2"
|
|
722
716
|
},
|
|
@@ -760,12 +754,12 @@
|
|
|
760
754
|
}
|
|
761
755
|
},
|
|
762
756
|
"node_modules/@ui5/project": {
|
|
763
|
-
"version": "3.
|
|
764
|
-
"resolved": "https://registry.npmjs.org/@ui5/project/-/project-3.
|
|
765
|
-
"integrity": "sha512-
|
|
757
|
+
"version": "3.9.0",
|
|
758
|
+
"resolved": "https://registry.npmjs.org/@ui5/project/-/project-3.9.0.tgz",
|
|
759
|
+
"integrity": "sha512-pm7FzV8oCaZtLBuoH9bVVpAtRz0pwpAJhJKg731lUHGsMkGG5zaWkmUjajBlQR/+dZtWmTlkwxjpJttjUVi43A==",
|
|
766
760
|
"dependencies": {
|
|
767
|
-
"@npmcli/config": "^8.0.
|
|
768
|
-
"@ui5/builder": "^3.
|
|
761
|
+
"@npmcli/config": "^8.0.3",
|
|
762
|
+
"@ui5/builder": "^3.2.0",
|
|
769
763
|
"@ui5/fs": "^3.0.5",
|
|
770
764
|
"@ui5/logger": "^3.0.0",
|
|
771
765
|
"ajv": "^6.12.6",
|
|
@@ -778,7 +772,7 @@
|
|
|
778
772
|
"lockfile": "^1.0.4",
|
|
779
773
|
"make-fetch-happen": "^13.0.0",
|
|
780
774
|
"node-stream-zip": "^1.15.0",
|
|
781
|
-
"pacote": "^17.0.
|
|
775
|
+
"pacote": "^17.0.5",
|
|
782
776
|
"pretty-hrtime": "^1.0.3",
|
|
783
777
|
"read-pkg": "^8.1.0",
|
|
784
778
|
"read-pkg-up": "^10.1.0",
|
|
@@ -794,11 +788,11 @@
|
|
|
794
788
|
}
|
|
795
789
|
},
|
|
796
790
|
"node_modules/@ui5/server": {
|
|
797
|
-
"version": "3.1.
|
|
798
|
-
"resolved": "https://registry.npmjs.org/@ui5/server/-/server-3.1.
|
|
799
|
-
"integrity": "sha512-
|
|
791
|
+
"version": "3.1.5",
|
|
792
|
+
"resolved": "https://registry.npmjs.org/@ui5/server/-/server-3.1.5.tgz",
|
|
793
|
+
"integrity": "sha512-inVv6DNihzqEZ5MwOIjLJ39eLCgU/msQOjyPt64Fk7BG88MIG4+HiwbPW/07glJ4VQgCrlppZ6+N4ToEc4JFKA==",
|
|
800
794
|
"dependencies": {
|
|
801
|
-
"@ui5/builder": "^3.
|
|
795
|
+
"@ui5/builder": "^3.2.0",
|
|
802
796
|
"@ui5/fs": "^3.0.5",
|
|
803
797
|
"@ui5/logger": "^3.0.0",
|
|
804
798
|
"body-parser": "^1.20.2",
|
|
@@ -950,9 +944,9 @@
|
|
|
950
944
|
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
|
|
951
945
|
},
|
|
952
946
|
"node_modules/big-integer": {
|
|
953
|
-
"version": "1.6.
|
|
954
|
-
"resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.
|
|
955
|
-
"integrity": "sha512-
|
|
947
|
+
"version": "1.6.52",
|
|
948
|
+
"resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz",
|
|
949
|
+
"integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==",
|
|
956
950
|
"engines": {
|
|
957
951
|
"node": ">=0.6"
|
|
958
952
|
}
|
|
@@ -1133,16 +1127,16 @@
|
|
|
1133
1127
|
}
|
|
1134
1128
|
},
|
|
1135
1129
|
"node_modules/cacache": {
|
|
1136
|
-
"version": "18.0.
|
|
1137
|
-
"resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.
|
|
1138
|
-
"integrity": "sha512-
|
|
1130
|
+
"version": "18.0.1",
|
|
1131
|
+
"resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.1.tgz",
|
|
1132
|
+
"integrity": "sha512-g4Uf2CFZPaxtJKre6qr4zqLDOOPU7bNVhWjlNhvzc51xaTOx2noMOLhfFkTAqwtrAZAKQUuDfyjitzilpA8WsQ==",
|
|
1139
1133
|
"dependencies": {
|
|
1140
1134
|
"@npmcli/fs": "^3.1.0",
|
|
1141
1135
|
"fs-minipass": "^3.0.0",
|
|
1142
1136
|
"glob": "^10.2.2",
|
|
1143
1137
|
"lru-cache": "^10.0.1",
|
|
1144
1138
|
"minipass": "^7.0.3",
|
|
1145
|
-
"minipass-collect": "^
|
|
1139
|
+
"minipass-collect": "^2.0.1",
|
|
1146
1140
|
"minipass-flush": "^1.0.5",
|
|
1147
1141
|
"minipass-pipeline": "^1.2.4",
|
|
1148
1142
|
"p-map": "^4.0.0",
|
|
@@ -1183,12 +1177,9 @@
|
|
|
1183
1177
|
}
|
|
1184
1178
|
},
|
|
1185
1179
|
"node_modules/cacache/node_modules/lru-cache": {
|
|
1186
|
-
"version": "10.0
|
|
1187
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.
|
|
1188
|
-
"integrity": "sha512
|
|
1189
|
-
"dependencies": {
|
|
1190
|
-
"semver": "^7.3.5"
|
|
1191
|
-
},
|
|
1180
|
+
"version": "10.1.0",
|
|
1181
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz",
|
|
1182
|
+
"integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==",
|
|
1192
1183
|
"engines": {
|
|
1193
1184
|
"node": "14 || >=16.14"
|
|
1194
1185
|
}
|
|
@@ -2861,9 +2852,9 @@
|
|
|
2861
2852
|
}
|
|
2862
2853
|
},
|
|
2863
2854
|
"node_modules/ignore-walk": {
|
|
2864
|
-
"version": "6.0.
|
|
2865
|
-
"resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.
|
|
2866
|
-
"integrity": "sha512-
|
|
2855
|
+
"version": "6.0.4",
|
|
2856
|
+
"resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.4.tgz",
|
|
2857
|
+
"integrity": "sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==",
|
|
2867
2858
|
"dependencies": {
|
|
2868
2859
|
"minimatch": "^9.0.0"
|
|
2869
2860
|
},
|
|
@@ -3581,32 +3572,16 @@
|
|
|
3581
3572
|
}
|
|
3582
3573
|
},
|
|
3583
3574
|
"node_modules/minipass-collect": {
|
|
3584
|
-
"version": "
|
|
3585
|
-
"resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-
|
|
3586
|
-
"integrity": "sha512-
|
|
3587
|
-
"dependencies": {
|
|
3588
|
-
"minipass": "^3.0.0"
|
|
3589
|
-
},
|
|
3590
|
-
"engines": {
|
|
3591
|
-
"node": ">= 8"
|
|
3592
|
-
}
|
|
3593
|
-
},
|
|
3594
|
-
"node_modules/minipass-collect/node_modules/minipass": {
|
|
3595
|
-
"version": "3.3.6",
|
|
3596
|
-
"resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
|
|
3597
|
-
"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
|
|
3575
|
+
"version": "2.0.1",
|
|
3576
|
+
"resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-2.0.1.tgz",
|
|
3577
|
+
"integrity": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==",
|
|
3598
3578
|
"dependencies": {
|
|
3599
|
-
"
|
|
3579
|
+
"minipass": "^7.0.3"
|
|
3600
3580
|
},
|
|
3601
3581
|
"engines": {
|
|
3602
|
-
"node": ">=
|
|
3582
|
+
"node": ">=16 || 14 >=14.17"
|
|
3603
3583
|
}
|
|
3604
3584
|
},
|
|
3605
|
-
"node_modules/minipass-collect/node_modules/yallist": {
|
|
3606
|
-
"version": "4.0.0",
|
|
3607
|
-
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
|
3608
|
-
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
|
3609
|
-
},
|
|
3610
3585
|
"node_modules/minipass-fetch": {
|
|
3611
3586
|
"version": "3.0.4",
|
|
3612
3587
|
"resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz",
|
|
@@ -3919,22 +3894,19 @@
|
|
|
3919
3894
|
}
|
|
3920
3895
|
},
|
|
3921
3896
|
"node_modules/npm-package-arg/node_modules/lru-cache": {
|
|
3922
|
-
"version": "10.0
|
|
3923
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.
|
|
3924
|
-
"integrity": "sha512
|
|
3925
|
-
"dependencies": {
|
|
3926
|
-
"semver": "^7.3.5"
|
|
3927
|
-
},
|
|
3897
|
+
"version": "10.1.0",
|
|
3898
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz",
|
|
3899
|
+
"integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==",
|
|
3928
3900
|
"engines": {
|
|
3929
3901
|
"node": "14 || >=16.14"
|
|
3930
3902
|
}
|
|
3931
3903
|
},
|
|
3932
3904
|
"node_modules/npm-packlist": {
|
|
3933
|
-
"version": "8.0.
|
|
3934
|
-
"resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-8.0.
|
|
3935
|
-
"integrity": "sha512-
|
|
3905
|
+
"version": "8.0.1",
|
|
3906
|
+
"resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-8.0.1.tgz",
|
|
3907
|
+
"integrity": "sha512-MQpL27ZrsJQ2kiAuQPpZb5LtJwydNRnI15QWXsf3WHERu4rzjRj6Zju/My2fov7tLuu3Gle/uoIX/DDZ3u4O4Q==",
|
|
3936
3908
|
"dependencies": {
|
|
3937
|
-
"ignore-walk": "^6.0.
|
|
3909
|
+
"ignore-walk": "^6.0.4"
|
|
3938
3910
|
},
|
|
3939
3911
|
"engines": {
|
|
3940
3912
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
@@ -4145,9 +4117,9 @@
|
|
|
4145
4117
|
}
|
|
4146
4118
|
},
|
|
4147
4119
|
"node_modules/pacote": {
|
|
4148
|
-
"version": "17.0.
|
|
4149
|
-
"resolved": "https://registry.npmjs.org/pacote/-/pacote-17.0.
|
|
4150
|
-
"integrity": "sha512-
|
|
4120
|
+
"version": "17.0.5",
|
|
4121
|
+
"resolved": "https://registry.npmjs.org/pacote/-/pacote-17.0.5.tgz",
|
|
4122
|
+
"integrity": "sha512-TAE0m20zSDMnchPja9vtQjri19X3pZIyRpm2TJVeI+yU42leJBBDTRYhOcWFsPhaMxf+3iwQkFiKz16G9AEeeA==",
|
|
4151
4123
|
"dependencies": {
|
|
4152
4124
|
"@npmcli/git": "^5.0.0",
|
|
4153
4125
|
"@npmcli/installed-package-contents": "^2.0.1",
|
|
@@ -4251,12 +4223,9 @@
|
|
|
4251
4223
|
}
|
|
4252
4224
|
},
|
|
4253
4225
|
"node_modules/path-scurry/node_modules/lru-cache": {
|
|
4254
|
-
"version": "10.0
|
|
4255
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.
|
|
4256
|
-
"integrity": "sha512
|
|
4257
|
-
"dependencies": {
|
|
4258
|
-
"semver": "^7.3.5"
|
|
4259
|
-
},
|
|
4226
|
+
"version": "10.1.0",
|
|
4227
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz",
|
|
4228
|
+
"integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==",
|
|
4260
4229
|
"engines": {
|
|
4261
4230
|
"node": "14 || >=16.14"
|
|
4262
4231
|
}
|
|
@@ -4503,9 +4472,9 @@
|
|
|
4503
4472
|
}
|
|
4504
4473
|
},
|
|
4505
4474
|
"node_modules/read-package-json-fast/node_modules/json-parse-even-better-errors": {
|
|
4506
|
-
"version": "3.0.
|
|
4507
|
-
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.
|
|
4508
|
-
"integrity": "sha512-
|
|
4475
|
+
"version": "3.0.1",
|
|
4476
|
+
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz",
|
|
4477
|
+
"integrity": "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==",
|
|
4509
4478
|
"engines": {
|
|
4510
4479
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
4511
4480
|
}
|
|
@@ -4522,20 +4491,17 @@
|
|
|
4522
4491
|
}
|
|
4523
4492
|
},
|
|
4524
4493
|
"node_modules/read-package-json/node_modules/json-parse-even-better-errors": {
|
|
4525
|
-
"version": "3.0.
|
|
4526
|
-
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.
|
|
4527
|
-
"integrity": "sha512-
|
|
4494
|
+
"version": "3.0.1",
|
|
4495
|
+
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz",
|
|
4496
|
+
"integrity": "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==",
|
|
4528
4497
|
"engines": {
|
|
4529
4498
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
4530
4499
|
}
|
|
4531
4500
|
},
|
|
4532
4501
|
"node_modules/read-package-json/node_modules/lru-cache": {
|
|
4533
|
-
"version": "10.0
|
|
4534
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.
|
|
4535
|
-
"integrity": "sha512
|
|
4536
|
-
"dependencies": {
|
|
4537
|
-
"semver": "^7.3.5"
|
|
4538
|
-
},
|
|
4502
|
+
"version": "10.1.0",
|
|
4503
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz",
|
|
4504
|
+
"integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==",
|
|
4539
4505
|
"engines": {
|
|
4540
4506
|
"node": "14 || >=16.14"
|
|
4541
4507
|
}
|
|
@@ -4653,9 +4619,9 @@
|
|
|
4653
4619
|
}
|
|
4654
4620
|
},
|
|
4655
4621
|
"node_modules/read-pkg-up/node_modules/type-fest": {
|
|
4656
|
-
"version": "4.8.
|
|
4657
|
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.
|
|
4658
|
-
"integrity": "sha512
|
|
4622
|
+
"version": "4.8.3",
|
|
4623
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz",
|
|
4624
|
+
"integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==",
|
|
4659
4625
|
"engines": {
|
|
4660
4626
|
"node": ">=16"
|
|
4661
4627
|
},
|
|
@@ -4686,9 +4652,9 @@
|
|
|
4686
4652
|
}
|
|
4687
4653
|
},
|
|
4688
4654
|
"node_modules/read-pkg/node_modules/json-parse-even-better-errors": {
|
|
4689
|
-
"version": "3.0.
|
|
4690
|
-
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.
|
|
4691
|
-
"integrity": "sha512-
|
|
4655
|
+
"version": "3.0.1",
|
|
4656
|
+
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz",
|
|
4657
|
+
"integrity": "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==",
|
|
4692
4658
|
"engines": {
|
|
4693
4659
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
4694
4660
|
}
|
|
@@ -4702,12 +4668,9 @@
|
|
|
4702
4668
|
}
|
|
4703
4669
|
},
|
|
4704
4670
|
"node_modules/read-pkg/node_modules/lru-cache": {
|
|
4705
|
-
"version": "10.0
|
|
4706
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.
|
|
4707
|
-
"integrity": "sha512
|
|
4708
|
-
"dependencies": {
|
|
4709
|
-
"semver": "^7.3.5"
|
|
4710
|
-
},
|
|
4671
|
+
"version": "10.1.0",
|
|
4672
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz",
|
|
4673
|
+
"integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==",
|
|
4711
4674
|
"engines": {
|
|
4712
4675
|
"node": "14 || >=16.14"
|
|
4713
4676
|
}
|
|
@@ -4756,9 +4719,9 @@
|
|
|
4756
4719
|
}
|
|
4757
4720
|
},
|
|
4758
4721
|
"node_modules/read-pkg/node_modules/type-fest": {
|
|
4759
|
-
"version": "4.8.
|
|
4760
|
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.
|
|
4761
|
-
"integrity": "sha512
|
|
4722
|
+
"version": "4.8.3",
|
|
4723
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz",
|
|
4724
|
+
"integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==",
|
|
4762
4725
|
"engines": {
|
|
4763
4726
|
"node": ">=16"
|
|
4764
4727
|
},
|
|
@@ -5683,9 +5646,9 @@
|
|
|
5683
5646
|
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
|
5684
5647
|
},
|
|
5685
5648
|
"node_modules/terser": {
|
|
5686
|
-
"version": "5.
|
|
5687
|
-
"resolved": "https://registry.npmjs.org/terser/-/terser-5.
|
|
5688
|
-
"integrity": "sha512-
|
|
5649
|
+
"version": "5.26.0",
|
|
5650
|
+
"resolved": "https://registry.npmjs.org/terser/-/terser-5.26.0.tgz",
|
|
5651
|
+
"integrity": "sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==",
|
|
5689
5652
|
"dependencies": {
|
|
5690
5653
|
"@jridgewell/source-map": "^0.3.3",
|
|
5691
5654
|
"acorn": "^8.8.2",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.8.0",
|
|
4
4
|
"description": "UI5 Tooling - CLI",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SAP SE",
|
|
@@ -116,11 +116,11 @@
|
|
|
116
116
|
"url": "git@github.com:SAP/ui5-cli.git"
|
|
117
117
|
},
|
|
118
118
|
"dependencies": {
|
|
119
|
-
"@ui5/builder": "^3.
|
|
119
|
+
"@ui5/builder": "^3.2.0",
|
|
120
120
|
"@ui5/fs": "^3.0.5",
|
|
121
121
|
"@ui5/logger": "^3.0.0",
|
|
122
|
-
"@ui5/project": "^3.
|
|
123
|
-
"@ui5/server": "^3.1.
|
|
122
|
+
"@ui5/project": "^3.9.0",
|
|
123
|
+
"@ui5/server": "^3.1.5",
|
|
124
124
|
"chalk": "^5.3.0",
|
|
125
125
|
"data-with-position": "^0.5.0",
|
|
126
126
|
"import-local": "^3.1.0",
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
"cross-env": "^7.0.3",
|
|
139
139
|
"depcheck": "^1.4.7",
|
|
140
140
|
"docdash": "^2.0.2",
|
|
141
|
-
"eslint": "^8.
|
|
141
|
+
"eslint": "^8.55.0",
|
|
142
142
|
"eslint-config-google": "^0.14.0",
|
|
143
143
|
"eslint-plugin-ava": "^14.0.0",
|
|
144
144
|
"eslint-plugin-jsdoc": "^46.9.0",
|