@ui5/cli 4.0.20 → 4.0.21

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,13 @@
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.20...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-cli/compare/v4.0.21...HEAD).
6
+
7
+ <a name="v4.0.21"></a>
8
+ ## [v4.0.21] - 2025-07-16
9
+ ### Bug Fixes
10
+ - **serve:** Respect `--config` option with `--dependency-definition` [`e043cd7`](https://github.com/SAP/ui5-cli/commit/e043cd7d3783b3289e903498be38f91504a461ab)
11
+
6
12
 
7
13
  <a name="v4.0.20"></a>
8
14
  ## [v4.0.20] - 2025-07-15
@@ -1342,6 +1348,7 @@ Only Node.js v10 or higher is supported.
1342
1348
 
1343
1349
  <a name="v0.0.1"></a>
1344
1350
  ## v0.0.1 - 2018-06-06
1351
+ [v4.0.21]: https://github.com/SAP/ui5-cli/compare/v4.0.20...v4.0.21
1345
1352
  [v4.0.20]: https://github.com/SAP/ui5-cli/compare/v4.0.19...v4.0.20
1346
1353
  [v4.0.19]: https://github.com/SAP/ui5-cli/compare/v4.0.18...v4.0.19
1347
1354
  [v4.0.18]: https://github.com/SAP/ui5-cli/compare/v4.0.17...v4.0.18
@@ -123,10 +123,10 @@ build.builder = function(cli) {
123
123
  })
124
124
  .option("output-style", {
125
125
  describe:
126
- "Processes build results into a specific directory structure. \r\n\r\n" +
127
- "- Flat: Omits the project namespace and the \"resources\" directory.\r\n" +
126
+ "Processes build results into a specific directory structure.<br>" +
127
+ "- Flat: Omits the project namespace and the \"resources\" directory.<br>" +
128
128
  "- Namespace: Respects the project namespace and the \"resources\" directory, " +
129
- "maintaining the original structure.\r\n" +
129
+ "maintaining the original structure.<br>" +
130
130
  "- Default: The default directory structure for every project type. For applications, " +
131
131
  "this is identical to \"Flat\", and for libraries, it is \"Namespace\". Other types have a " +
132
132
  "more distinct default output style.",
@@ -93,6 +93,7 @@ serve.handler = async function(argv) {
93
93
  if (argv.dependencyDefinition) {
94
94
  graph = await graphFromStaticFile({
95
95
  filePath: argv.dependencyDefinition,
96
+ rootConfigPath: argv.config,
96
97
  versionOverride: argv.frameworkVersion,
97
98
  cacheMode: argv.cacheMode,
98
99
  });
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@ui5/cli",
3
- "version": "4.0.20",
3
+ "version": "4.0.21",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@ui5/cli",
9
- "version": "4.0.20",
9
+ "version": "4.0.21",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@ui5/builder": "^4.0.8",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/cli",
3
- "version": "4.0.20",
3
+ "version": "4.0.21",
4
4
  "description": "UI5 Tooling - CLI",
5
5
  "author": {
6
6
  "name": "SAP SE",