@ui5/cli 3.1.1 → 3.1.3

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,21 @@
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.1.1...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-cli/compare/v3.1.3...HEAD).
6
+
7
+ <a name="v3.1.3"></a>
8
+ ## [v3.1.3] - 2023-05-23
9
+ ### Dependency Updates
10
+ - Bump [@ui5](https://github.com/ui5)/project from 3.3.0 to 3.3.1 [`dbe7657`](https://github.com/SAP/ui5-cli/commit/dbe765789c2998e71dbc2acfe18029400c144159)
11
+ - Bump [@ui5](https://github.com/ui5)/builder from 3.0.3 to 3.0.4 [`44a7b21`](https://github.com/SAP/ui5-cli/commit/44a7b21618fe2892d6f99d5e97779a43cda24b8d)
12
+ - Bump [@ui5](https://github.com/ui5)/fs from 3.0.3 to 3.0.4 [`9ed9ce2`](https://github.com/SAP/ui5-cli/commit/9ed9ce206ac22dbe396d10a9ae5f8ff1345c28be)
13
+
14
+
15
+ <a name="v3.1.2"></a>
16
+ ## [v3.1.2] - 2023-05-05
17
+ ### Dependency Updates
18
+ - Bump [@ui5](https://github.com/ui5)/project from 3.2.2 to 3.3.0 [`22c1c14`](https://github.com/SAP/ui5-cli/commit/22c1c1407253703e201df57555d94192ef7895d6)
19
+
6
20
 
7
21
  <a name="v3.1.1"></a>
8
22
  ## [v3.1.1] - 2023-04-27
@@ -1025,6 +1039,8 @@ Only Node.js v10 or higher is supported.
1025
1039
 
1026
1040
  <a name="v0.0.1"></a>
1027
1041
  ## v0.0.1 - 2018-06-06
1042
+ [v3.1.3]: https://github.com/SAP/ui5-cli/compare/v3.1.2...v3.1.3
1043
+ [v3.1.2]: https://github.com/SAP/ui5-cli/compare/v3.1.1...v3.1.2
1028
1044
  [v3.1.1]: https://github.com/SAP/ui5-cli/compare/v3.1.0...v3.1.1
1029
1045
  [v3.1.0]: https://github.com/SAP/ui5-cli/compare/v3.0.7...v3.1.0
1030
1046
  [v3.0.7]: https://github.com/SAP/ui5-cli/compare/v3.0.6...v3.0.7
@@ -21,7 +21,7 @@ build.builder = function(cli) {
21
21
  })
22
22
  .command("self-contained",
23
23
  "Build project and create self-contained bundle. " +
24
- "Recommended to be used in conjunction with --include-dependencies", {
24
+ "Recommended to be used in conjunction with --include-all-dependencies", {
25
25
  handler: handleBuild,
26
26
  builder: noop,
27
27
  middlewares: [baseMiddleware]
@@ -28,9 +28,9 @@ configCommand.builder = function(cli) {
28
28
  builder: noop,
29
29
  middlewares: [baseMiddleware],
30
30
  })
31
- .example("$0 set mavenSnapshotEndpointUrl http://example.com/snapshots/",
31
+ .example("$0 config set mavenSnapshotEndpointUrl http://example.com/snapshots/",
32
32
  "Set a value for the mavenSnapshotEndpointUrl configuration")
33
- .example("$0 set mavenSnapshotEndpointUrl",
33
+ .example("$0 config set mavenSnapshotEndpointUrl",
34
34
  "Unset the current value of the mavenSnapshotEndpointUrl configuration");
35
35
  };
36
36