@ui5/cli 4.0.39 → 4.0.40

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,16 @@
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.39...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-cli/compare/v4.0.40...HEAD).
6
+
7
+ <a name="v4.0.40"></a>
8
+ ## [v4.0.40] - 2026-01-22
9
+ ### Bug Fixes
10
+ - Log error during initialization of UI5 CLI [`c909a10`](https://github.com/SAP/ui5-cli/commit/c909a10ccb23d94567a4aa57b680ce1d39372ae2)
11
+
12
+ ### Dependency Updates
13
+ - Bump [@ui5](https://github.com/ui5)/fs from 4.0.3 to 4.0.4 [`2445d30`](https://github.com/SAP/ui5-cli/commit/2445d30601d7c4c2190bbfc26b14b0e25e122f44)
14
+
6
15
 
7
16
  <a name="v4.0.39"></a>
8
17
  ## [v4.0.39] - 2026-01-02
@@ -1450,6 +1459,7 @@ Only Node.js v10 or higher is supported.
1450
1459
 
1451
1460
  <a name="v0.0.1"></a>
1452
1461
  ## v0.0.1 - 2018-06-06
1462
+ [v4.0.40]: https://github.com/SAP/ui5-cli/compare/v4.0.39...v4.0.40
1453
1463
  [v4.0.39]: https://github.com/SAP/ui5-cli/compare/v4.0.38...v4.0.39
1454
1464
  [v4.0.38]: https://github.com/SAP/ui5-cli/compare/v4.0.37...v4.0.38
1455
1465
  [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
  }