@ui5/cli 2.14.13 → 2.14.15
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 -1
- package/bin/ui5.js +28 -12
- package/npm-shrinkwrap.json +41 -24
- package/package.json +2 -2
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/v2.14.
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-cli/compare/v2.14.15...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v2.14.15"></a>
|
|
8
|
+
## [v2.14.15] - 2022-11-30
|
|
9
|
+
### Dependency Updates
|
|
10
|
+
- Bump [@ui5](https://github.com/ui5)/builder from 2.11.8 to 2.11.9 [`803f8cc`](https://github.com/SAP/ui5-cli/commit/803f8ccb9f3daf3523872f9a4bbf0bda5e3c7f02)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
<a name="v2.14.14"></a>
|
|
14
|
+
## [v2.14.14] - 2022-10-28
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
- **SyntaxError:** Unexpected token '.' in Node.js v12 [`bab2057`](https://github.com/SAP/ui5-cli/commit/bab2057e184a2072f9b596565d9690b6e39b109d)
|
|
17
|
+
|
|
18
|
+
### Dependency Updates
|
|
19
|
+
- Bump [@ui5](https://github.com/ui5)/builder from 2.11.7 to 2.11.8 [`1f5e517`](https://github.com/SAP/ui5-cli/commit/1f5e5173d0ca594ea4a34b97b0a760c67a9664a9)
|
|
20
|
+
|
|
6
21
|
|
|
7
22
|
<a name="v2.14.13"></a>
|
|
8
23
|
## [v2.14.13] - 2022-10-20
|
|
@@ -756,6 +771,8 @@ Only Node.js v10 or higher is supported.
|
|
|
756
771
|
<a name="v0.0.1"></a>
|
|
757
772
|
## v0.0.1 - 2018-06-06
|
|
758
773
|
|
|
774
|
+
[v2.14.15]: https://github.com/SAP/ui5-cli/compare/v2.14.14...v2.14.15
|
|
775
|
+
[v2.14.14]: https://github.com/SAP/ui5-cli/compare/v2.14.13...v2.14.14
|
|
759
776
|
[v2.14.13]: https://github.com/SAP/ui5-cli/compare/v2.14.12...v2.14.13
|
|
760
777
|
[v2.14.12]: https://github.com/SAP/ui5-cli/compare/v2.14.11...v2.14.12
|
|
761
778
|
[v2.14.11]: https://github.com/SAP/ui5-cli/compare/v2.14.10...v2.14.11
|
package/bin/ui5.js
CHANGED
|
@@ -26,16 +26,31 @@ if (
|
|
|
26
26
|
console.log("=====================================================================");
|
|
27
27
|
process.exit(1);
|
|
28
28
|
} else {
|
|
29
|
-
if (semver
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
29
|
+
if (semver) {
|
|
30
|
+
if (semver.prerelease(nodeVersion)) {
|
|
31
|
+
console.log("====================== UNSTABLE NODE.JS VERSION =====================");
|
|
32
|
+
console.log("You are using an unstable version of Node.js");
|
|
33
|
+
console.log("Detected Node.js version: " + nodeVersion);
|
|
34
|
+
console.log("");
|
|
35
|
+
console.log("=> Please note that an unstable version might cause unexpected");
|
|
36
|
+
console.log(" behavior. For productive use please consider using a stable");
|
|
37
|
+
console.log(" version of Node.js! For the release policy of Node.js, see");
|
|
38
|
+
console.log(" https://nodejs.org/en/about/releases");
|
|
39
|
+
console.log("=====================================================================");
|
|
40
|
+
} else if (semver.satisfies(nodeVersion, "< 14.16 || ^15 || ^17")) {
|
|
41
|
+
console.log("================ NODE.JS VERSION REACHED END OF LIFE ================");
|
|
42
|
+
console.log("You are using a version of Node.js that reached its end of life, see:");
|
|
43
|
+
console.log("https://github.com/nodejs/release#end-of-life-releases");
|
|
44
|
+
console.log("");
|
|
45
|
+
console.log("Detected Node.js version: " + nodeVersion);
|
|
46
|
+
console.log("");
|
|
47
|
+
console.log("There might also be a newer version of @ui5/cli available at:");
|
|
48
|
+
console.log("https://www.npmjs.com/package/@ui5/cli");
|
|
49
|
+
console.log("");
|
|
50
|
+
console.log("=> Please upgrade to a supported version of Node.js and make sure to");
|
|
51
|
+
console.log(" use the latest version of @ui5/cli");
|
|
52
|
+
console.log("=====================================================================");
|
|
53
|
+
}
|
|
39
54
|
}
|
|
40
55
|
// Timeout is required to log info when importing from local installation
|
|
41
56
|
setTimeout(async () => {
|
|
@@ -70,8 +85,9 @@ if (
|
|
|
70
85
|
if (
|
|
71
86
|
!disableUpdateNotifier &&
|
|
72
87
|
|
|
73
|
-
// Node.js
|
|
74
|
-
|
|
88
|
+
// Check for minimum supported Node.js version of update-notifier v6
|
|
89
|
+
// See https://github.com/yeoman/update-notifier/blob/3046d0f61a57f8270291b6ab271f8a12df8421a6/package.json#L16
|
|
90
|
+
semver.satisfies(nodeVersion, ">=14.16", {includePrerelease: true})
|
|
75
91
|
) {
|
|
76
92
|
const updateNotifier = require("../lib/cli/update-notifier");
|
|
77
93
|
await updateNotifier({pkg});
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/cli",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.15",
|
|
4
4
|
"lockfileVersion": 1,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"dependencies": {
|
|
7
|
+
"@adobe/css-tools": {
|
|
8
|
+
"version": "4.0.1",
|
|
9
|
+
"resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.0.1.tgz",
|
|
10
|
+
"integrity": "sha512-+u76oB43nOHrF4DDWRLWDCtci7f3QJoEBigemIdIeTi1ODqjx6Tad9NCVnPRwewWlKkVab5PlK8DCtPTyX7S8g=="
|
|
11
|
+
},
|
|
7
12
|
"@babel/code-frame": {
|
|
8
13
|
"version": "7.18.6",
|
|
9
14
|
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
|
|
@@ -79,9 +84,9 @@
|
|
|
79
84
|
}
|
|
80
85
|
},
|
|
81
86
|
"@babel/parser": {
|
|
82
|
-
"version": "7.
|
|
83
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.
|
|
84
|
-
"integrity": "sha512-
|
|
87
|
+
"version": "7.20.0",
|
|
88
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.0.tgz",
|
|
89
|
+
"integrity": "sha512-G9VgAhEaICnz8iiJeGJQyVl6J2nTjbW0xeisva0PK6XcKsga7BIaqm4ZF8Rg1Wbaqmy6znspNqhPaPkyukujzg=="
|
|
85
90
|
},
|
|
86
91
|
"@jridgewell/gen-mapping": {
|
|
87
92
|
"version": "0.3.2",
|
|
@@ -209,9 +214,9 @@
|
|
|
209
214
|
"integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw=="
|
|
210
215
|
},
|
|
211
216
|
"@ui5/builder": {
|
|
212
|
-
"version": "2.11.
|
|
213
|
-
"resolved": "https://registry.npmjs.org/@ui5/builder/-/builder-2.11.
|
|
214
|
-
"integrity": "sha512-
|
|
217
|
+
"version": "2.11.9",
|
|
218
|
+
"resolved": "https://registry.npmjs.org/@ui5/builder/-/builder-2.11.9.tgz",
|
|
219
|
+
"integrity": "sha512-olUHJaVRV82HLQtCShM1/A+kkfHRy4OCI7QC2M/40epFXLcM4lR/RyZV40tMCbKCxslFia8k0SctnZp/Kq3fNg==",
|
|
215
220
|
"requires": {
|
|
216
221
|
"@ui5/fs": "^2.0.6",
|
|
217
222
|
"@ui5/logger": "^2.0.1",
|
|
@@ -222,7 +227,7 @@
|
|
|
222
227
|
"globby": "^11.1.0",
|
|
223
228
|
"graceful-fs": "^4.2.10",
|
|
224
229
|
"jsdoc": "^3.6.11",
|
|
225
|
-
"less-openui5": "^0.11.
|
|
230
|
+
"less-openui5": "^0.11.3",
|
|
226
231
|
"make-dir": "^3.1.0",
|
|
227
232
|
"pretty-data": "^0.40.0",
|
|
228
233
|
"pretty-hrtime": "^1.0.3",
|
|
@@ -232,6 +237,18 @@
|
|
|
232
237
|
"terser": "^5.15.1",
|
|
233
238
|
"xml2js": "^0.4.23",
|
|
234
239
|
"yazl": "^2.5.1"
|
|
240
|
+
},
|
|
241
|
+
"dependencies": {
|
|
242
|
+
"less-openui5": {
|
|
243
|
+
"version": "0.11.3",
|
|
244
|
+
"resolved": "https://registry.npmjs.org/less-openui5/-/less-openui5-0.11.3.tgz",
|
|
245
|
+
"integrity": "sha512-ZrBwd6ktPrdPITVmQ9GNhRNWKn7xruQjNBrpAB3e3Jcm+bm/7mP4XXJ+eAE/F+OR/lXVUiLUzvLBW4E++NumFg==",
|
|
246
|
+
"requires": {
|
|
247
|
+
"@adobe/css-tools": "^4.0.1",
|
|
248
|
+
"clone": "^2.1.2",
|
|
249
|
+
"mime": "^1.6.0"
|
|
250
|
+
}
|
|
251
|
+
}
|
|
235
252
|
}
|
|
236
253
|
},
|
|
237
254
|
"@ui5/fs": {
|
|
@@ -655,16 +672,16 @@
|
|
|
655
672
|
"integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w=="
|
|
656
673
|
},
|
|
657
674
|
"cacheable-request": {
|
|
658
|
-
"version": "10.2.
|
|
659
|
-
"resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.
|
|
660
|
-
"integrity": "sha512-
|
|
675
|
+
"version": "10.2.2",
|
|
676
|
+
"resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.2.tgz",
|
|
677
|
+
"integrity": "sha512-KxjQZM3UIo7/J6W4sLpwFvu1GB3Whv8NtZ8ZrUL284eiQjiXeeqWTdhixNrp/NLZ/JNuFBo6BD4ZaO8ZJ5BN8Q==",
|
|
661
678
|
"requires": {
|
|
662
679
|
"@types/http-cache-semantics": "^4.0.1",
|
|
663
680
|
"get-stream": "^6.0.1",
|
|
664
681
|
"http-cache-semantics": "^4.1.0",
|
|
665
682
|
"keyv": "^4.5.0",
|
|
666
683
|
"mimic-response": "^4.0.0",
|
|
667
|
-
"normalize-url": "^7.
|
|
684
|
+
"normalize-url": "^7.2.0",
|
|
668
685
|
"responselike": "^3.0.0"
|
|
669
686
|
},
|
|
670
687
|
"dependencies": {
|
|
@@ -1917,9 +1934,9 @@
|
|
|
1917
1934
|
}
|
|
1918
1935
|
},
|
|
1919
1936
|
"is-core-module": {
|
|
1920
|
-
"version": "2.
|
|
1921
|
-
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.
|
|
1922
|
-
"integrity": "sha512-
|
|
1937
|
+
"version": "2.11.0",
|
|
1938
|
+
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz",
|
|
1939
|
+
"integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==",
|
|
1923
1940
|
"requires": {
|
|
1924
1941
|
"has": "^1.0.3"
|
|
1925
1942
|
}
|
|
@@ -3604,9 +3621,9 @@
|
|
|
3604
3621
|
}
|
|
3605
3622
|
},
|
|
3606
3623
|
"terser": {
|
|
3607
|
-
"version": "5.
|
|
3608
|
-
"resolved": "https://registry.npmjs.org/terser/-/terser-5.
|
|
3609
|
-
"integrity": "sha512-
|
|
3624
|
+
"version": "5.16.0",
|
|
3625
|
+
"resolved": "https://registry.npmjs.org/terser/-/terser-5.16.0.tgz",
|
|
3626
|
+
"integrity": "sha512-KjTV81QKStSfwbNiwlBXfcgMcOloyuRdb62/iLFPGBcVNF4EXjhdYBhYHmbJpiBrVxZhDvltE11j+LBQUxEEJg==",
|
|
3610
3627
|
"requires": {
|
|
3611
3628
|
"@jridgewell/source-map": "^0.3.2",
|
|
3612
3629
|
"acorn": "^8.5.0",
|
|
@@ -3615,9 +3632,9 @@
|
|
|
3615
3632
|
},
|
|
3616
3633
|
"dependencies": {
|
|
3617
3634
|
"acorn": {
|
|
3618
|
-
"version": "8.8.
|
|
3619
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.
|
|
3620
|
-
"integrity": "sha512-
|
|
3635
|
+
"version": "8.8.1",
|
|
3636
|
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz",
|
|
3637
|
+
"integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA=="
|
|
3621
3638
|
}
|
|
3622
3639
|
}
|
|
3623
3640
|
},
|
|
@@ -3654,9 +3671,9 @@
|
|
|
3654
3671
|
"integrity": "sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A=="
|
|
3655
3672
|
},
|
|
3656
3673
|
"tslib": {
|
|
3657
|
-
"version": "2.4.
|
|
3658
|
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.
|
|
3659
|
-
"integrity": "sha512-
|
|
3674
|
+
"version": "2.4.1",
|
|
3675
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz",
|
|
3676
|
+
"integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA=="
|
|
3660
3677
|
},
|
|
3661
3678
|
"type-fest": {
|
|
3662
3679
|
"version": "0.6.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/cli",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.15",
|
|
4
4
|
"description": "UI5 Tooling - CLI",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SAP SE",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"url": "git@github.com:SAP/ui5-cli.git"
|
|
108
108
|
},
|
|
109
109
|
"dependencies": {
|
|
110
|
-
"@ui5/builder": "^2.11.
|
|
110
|
+
"@ui5/builder": "^2.11.9",
|
|
111
111
|
"@ui5/fs": "^2.0.6",
|
|
112
112
|
"@ui5/logger": "^2.0.1",
|
|
113
113
|
"@ui5/project": "^2.6.0",
|