@ui5/cli 4.0.39 → 4.0.41
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 +19 -1
- package/bin/ui5.cjs +1 -1
- package/npm-shrinkwrap.json +658 -271
- package/package.json +15 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,23 @@
|
|
|
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.
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-cli/compare/v4.0.41...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v4.0.41"></a>
|
|
8
|
+
## [v4.0.41] - 2026-01-23
|
|
9
|
+
### Dependency Updates
|
|
10
|
+
- Bump [@ui5](https://github.com/ui5)/server from 4.0.10 to 4.0.11 [`8722477`](https://github.com/SAP/ui5-cli/commit/87224777f719e1d15d7e5816489b45a01977b315)
|
|
11
|
+
- Bump tar from 6.2.1 to 7.5.6 [`c5e1221`](https://github.com/SAP/ui5-cli/commit/c5e122145201a4c2ebeda35c2e375bbd5a4d0474)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
<a name="v4.0.40"></a>
|
|
15
|
+
## [v4.0.40] - 2026-01-22
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
- Log error during initialization of UI5 CLI [`c909a10`](https://github.com/SAP/ui5-cli/commit/c909a10ccb23d94567a4aa57b680ce1d39372ae2)
|
|
18
|
+
|
|
19
|
+
### Dependency Updates
|
|
20
|
+
- Bump [@ui5](https://github.com/ui5)/fs from 4.0.3 to 4.0.4 [`2445d30`](https://github.com/SAP/ui5-cli/commit/2445d30601d7c4c2190bbfc26b14b0e25e122f44)
|
|
21
|
+
|
|
6
22
|
|
|
7
23
|
<a name="v4.0.39"></a>
|
|
8
24
|
## [v4.0.39] - 2026-01-02
|
|
@@ -1450,6 +1466,8 @@ Only Node.js v10 or higher is supported.
|
|
|
1450
1466
|
|
|
1451
1467
|
<a name="v0.0.1"></a>
|
|
1452
1468
|
## v0.0.1 - 2018-06-06
|
|
1469
|
+
[v4.0.41]: https://github.com/SAP/ui5-cli/compare/v4.0.40...v4.0.41
|
|
1470
|
+
[v4.0.40]: https://github.com/SAP/ui5-cli/compare/v4.0.39...v4.0.40
|
|
1453
1471
|
[v4.0.39]: https://github.com/SAP/ui5-cli/compare/v4.0.38...v4.0.39
|
|
1454
1472
|
[v4.0.38]: https://github.com/SAP/ui5-cli/compare/v4.0.37...v4.0.38
|
|
1455
1473
|
[v4.0.37]: https://github.com/SAP/ui5-cli/compare/v4.0.36...v4.0.37
|
package/bin/ui5.cjs
CHANGED
|
@@ -117,7 +117,7 @@ if (process.env.NODE_ENV !== "test" || process.env.UI5_CLI_TEST_BIN_RUN_MAIN !==
|
|
|
117
117
|
ui5.main().catch((err) => {
|
|
118
118
|
process.stderr.write("Fatal Error: Unable to initialize UI5 CLI");
|
|
119
119
|
process.stderr.write("\n");
|
|
120
|
-
process.stderr.write(err);
|
|
120
|
+
process.stderr.write(String(err));
|
|
121
121
|
process.exit(1);
|
|
122
122
|
});
|
|
123
123
|
}
|