@ui5/cli 3.3.0 → 3.3.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 +16 -1
- package/lib/cli/base.js +1 -1
- package/lib/cli/commands/build.js +7 -4
- package/lib/cli/commands/serve.js +1 -1
- package/lib/cli/commands/tree.js +1 -1
- package/npm-shrinkwrap.json +458 -525
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,20 @@
|
|
|
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.3.
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-cli/compare/v3.3.2...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v3.3.2"></a>
|
|
8
|
+
## [v3.3.2] - 2023-07-13
|
|
9
|
+
### Dependency Updates
|
|
10
|
+
- Bump [@ui5](https://github.com/ui5)/project from 3.4.1 to 3.4.2 [`b55c982`](https://github.com/SAP/ui5-cli/commit/b55c98259c43878a36001e47a1e6a3386f706688)
|
|
11
|
+
- Bump [@ui5](https://github.com/ui5)/builder from 3.0.6 to 3.0.7 [`8d49876`](https://github.com/SAP/ui5-cli/commit/8d49876b4de7e53b93160a1e913a12f8ba935744)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
<a name="v3.3.1"></a>
|
|
15
|
+
## [v3.3.1] - 2023-07-03
|
|
16
|
+
### Dependency Updates
|
|
17
|
+
- Bump [@ui5](https://github.com/ui5)/project from 3.4.0 to 3.4.1 [`ebf23f4`](https://github.com/SAP/ui5-cli/commit/ebf23f4ed7ed3833579ee462647e626d16e73192)
|
|
18
|
+
|
|
6
19
|
|
|
7
20
|
<a name="v3.3.0"></a>
|
|
8
21
|
## [v3.3.0] - 2023-06-21
|
|
@@ -1058,6 +1071,8 @@ Only Node.js v10 or higher is supported.
|
|
|
1058
1071
|
|
|
1059
1072
|
<a name="v0.0.1"></a>
|
|
1060
1073
|
## v0.0.1 - 2018-06-06
|
|
1074
|
+
[v3.3.2]: https://github.com/SAP/ui5-cli/compare/v3.3.1...v3.3.2
|
|
1075
|
+
[v3.3.1]: https://github.com/SAP/ui5-cli/compare/v3.3.0...v3.3.1
|
|
1061
1076
|
[v3.3.0]: https://github.com/SAP/ui5-cli/compare/v3.2.0...v3.3.0
|
|
1062
1077
|
[v3.2.0]: https://github.com/SAP/ui5-cli/compare/v3.1.3...v3.2.0
|
|
1063
1078
|
[v3.1.3]: https://github.com/SAP/ui5-cli/compare/v3.1.2...v3.1.3
|
package/lib/cli/base.js
CHANGED
|
@@ -27,7 +27,7 @@ export default function(cli) {
|
|
|
27
27
|
})
|
|
28
28
|
.option("loglevel", {
|
|
29
29
|
alias: "log-level",
|
|
30
|
-
describe: "Set the logging level
|
|
30
|
+
describe: "Set the logging level",
|
|
31
31
|
default: "info",
|
|
32
32
|
type: "string",
|
|
33
33
|
choices: ["silent", "error", "warn", "info", "perf", "verbose", "silly"]
|
|
@@ -27,7 +27,8 @@ build.builder = function(cli) {
|
|
|
27
27
|
middlewares: [baseMiddleware]
|
|
28
28
|
})
|
|
29
29
|
.option("include-all-dependencies", {
|
|
30
|
-
describe: "Include all dependencies in the build result"
|
|
30
|
+
describe: "Include all dependencies in the build result. " +
|
|
31
|
+
"This is equivalent to '--include-dependency \"*\"'",
|
|
31
32
|
alias: ["all", "a"],
|
|
32
33
|
default: false,
|
|
33
34
|
type: "boolean"
|
|
@@ -35,7 +36,8 @@ build.builder = function(cli) {
|
|
|
35
36
|
.option("include-dependency", {
|
|
36
37
|
describe: "A list of dependencies to be included in the build result. You can use the asterisk '*' as" +
|
|
37
38
|
" an alias for including all dependencies in the build result. The listed dependencies cannot be" +
|
|
38
|
-
" overruled by dependencies defined in 'exclude-dependency'."
|
|
39
|
+
" overruled by dependencies defined in 'exclude-dependency'. " +
|
|
40
|
+
"The provided name must match with the dependency name shown in 'ui5 ls --flat'",
|
|
39
41
|
type: "string",
|
|
40
42
|
array: true
|
|
41
43
|
})
|
|
@@ -54,7 +56,8 @@ build.builder = function(cli) {
|
|
|
54
56
|
})
|
|
55
57
|
.option("exclude-dependency", {
|
|
56
58
|
describe: "A list of dependencies to be excluded from the build result. The listed dependencies can" +
|
|
57
|
-
" be overruled by dependencies defined in 'include-dependency'."
|
|
59
|
+
" be overruled by dependencies defined in 'include-dependency'. " +
|
|
60
|
+
"The provided name must match with the dependency name shown in 'ui5 ls --flat'",
|
|
58
61
|
type: "string",
|
|
59
62
|
array: true
|
|
60
63
|
})
|
|
@@ -103,7 +106,7 @@ build.builder = function(cli) {
|
|
|
103
106
|
})
|
|
104
107
|
.option("cache-mode", {
|
|
105
108
|
describe:
|
|
106
|
-
"Cache mode to use when consuming SNAPSHOT versions of
|
|
109
|
+
"Cache mode to use when consuming SNAPSHOT versions of framework dependencies. " +
|
|
107
110
|
"The 'Default' behavior is to invalidate the cache after 9 hours. 'Force' uses the cache only and " +
|
|
108
111
|
"does not create any requests. 'Off' invalidates any existing cache and updates from the repository",
|
|
109
112
|
type: "string",
|
|
@@ -67,7 +67,7 @@ serve.builder = function(cli) {
|
|
|
67
67
|
})
|
|
68
68
|
.option("cache-mode", {
|
|
69
69
|
describe:
|
|
70
|
-
"Cache mode to use when consuming SNAPSHOT versions of
|
|
70
|
+
"Cache mode to use when consuming SNAPSHOT versions of framework dependencies. " +
|
|
71
71
|
"The 'Default' behavior is to invalidate the cache after 9 hours. 'Force' uses the cache only and " +
|
|
72
72
|
"does not create any requests. 'Off' invalidates any existing cache and updates from the repository",
|
|
73
73
|
type: "string",
|
package/lib/cli/commands/tree.js
CHANGED
|
@@ -29,7 +29,7 @@ tree.builder = function(cli) {
|
|
|
29
29
|
})
|
|
30
30
|
.option("cache-mode", {
|
|
31
31
|
describe:
|
|
32
|
-
"Cache mode to use when consuming SNAPSHOT versions of
|
|
32
|
+
"Cache mode to use when consuming SNAPSHOT versions of framework dependencies. " +
|
|
33
33
|
"The 'Default' behavior is to invalidate the cache after 9 hours. 'Force' uses the cache only and " +
|
|
34
34
|
"does not create any requests. 'Off' invalidates any existing cache and updates from the repository",
|
|
35
35
|
type: "string",
|