@ui5/cli 3.0.0-alpha.4 → 3.0.0-alpha.7

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,30 @@
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.0.0-alpha.4...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-cli/compare/v3.0.0-alpha.7...HEAD).
6
+
7
+ <a name="v3.0.0-alpha.7"></a>
8
+ ## [v3.0.0-alpha.7] - 2022-04-26
9
+ ### Dependency Updates
10
+ - Bump [@ui5](https://github.com/ui5)/project from 3.0.0-alpha.1 to 3.0.0-alpha.2 [`aac8f7f`](https://github.com/SAP/ui5-cli/commit/aac8f7f5f204660010c42ed428542e01a988d5c6)
11
+ - Bump [@ui5](https://github.com/ui5)/builder from 3.0.0-alpha.5 to 3.0.0-alpha.6 [`027e4df`](https://github.com/SAP/ui5-cli/commit/027e4dfba2bbbb9bcf209d82d85ecff7a2acb6a9)
12
+ - Bump [@ui5](https://github.com/ui5)/fs from 3.0.0-alpha.2 to 3.0.0-alpha.3 [`1f43c4e`](https://github.com/SAP/ui5-cli/commit/1f43c4ed2699e66b0d6c50ca3738a6f61c060734)
13
+
14
+
15
+ <a name="v3.0.0-alpha.6"></a>
16
+ ## [v3.0.0-alpha.6] - 2022-04-14
17
+ ### Dependency Updates
18
+ - Bump [@ui5](https://github.com/ui5)/builder from 3.0.0-alpha.4 to 3.0.0-alpha.5 [`87c4136`](https://github.com/SAP/ui5-cli/commit/87c413627696365eb94de9fccdd7798a05543933)
19
+
20
+
21
+ <a name="v3.0.0-alpha.5"></a>
22
+ ## [v3.0.0-alpha.5] - 2022-04-05
23
+ ### Dependency Updates
24
+ - Bump [@ui5](https://github.com/ui5)/builder from 3.0.0-alpha.3 to 3.0.0-alpha.4 [`91d3bbd`](https://github.com/SAP/ui5-cli/commit/91d3bbdd01ec1cc80f21094434fa0f7da37ca242)
25
+
26
+ ### Features
27
+ - Add build flag "--experimental-css-variables" ([#501](https://github.com/SAP/ui5-cli/issues/501)) [`0b099db`](https://github.com/SAP/ui5-cli/commit/0b099db193ee94aa0bde8373e883fbc54098cd89)
28
+
6
29
 
7
30
  <a name="v3.0.0-alpha.4"></a>
8
31
  ## [v3.0.0-alpha.4] - 2022-03-10
@@ -748,6 +771,9 @@ Only Node.js v10 or higher is supported.
748
771
  <a name="v0.0.1"></a>
749
772
  ## v0.0.1 - 2018-06-06
750
773
 
774
+ [v3.0.0-alpha.7]: https://github.com/SAP/ui5-cli/compare/v3.0.0-alpha.6...v3.0.0-alpha.7
775
+ [v3.0.0-alpha.6]: https://github.com/SAP/ui5-cli/compare/v3.0.0-alpha.5...v3.0.0-alpha.6
776
+ [v3.0.0-alpha.5]: https://github.com/SAP/ui5-cli/compare/v3.0.0-alpha.4...v3.0.0-alpha.5
751
777
  [v3.0.0-alpha.4]: https://github.com/SAP/ui5-cli/compare/v3.0.0-alpha.3...v3.0.0-alpha.4
752
778
  [v3.0.0-alpha.3]: https://github.com/SAP/ui5-cli/compare/v3.0.0-alpha.2...v3.0.0-alpha.3
753
779
  [v3.0.0-alpha.2]: https://github.com/SAP/ui5-cli/compare/v3.0.0-alpha.1...v3.0.0-alpha.2
@@ -100,6 +100,13 @@ build.builder = function(cli) {
100
100
  describe: "Overrides the framework version defined by the project",
101
101
  type: "string"
102
102
  })
103
+ .option("experimental-css-variables", {
104
+ describe:
105
+ "Generate CSS variables (css-variables.css, css-variables.source.less)" +
106
+ " and skeleton (library-skeleton(-RTL).css) for all themes",
107
+ default: false,
108
+ type: "boolean"
109
+ })
103
110
  .example("ui5 build", "Preload build for project without dependencies")
104
111
  .example("ui5 build self-contained --all", "Self-contained build for project including dependencies")
105
112
  .example("ui5 build --all --exclude-task=* --include-task=createDebugFiles generateAppPreload",
@@ -111,7 +118,9 @@ build.builder = function(cli) {
111
118
  "Build project and dependencies in dev mode, except \"sap.ui.core\" and \"sap.m\" " +
112
119
  "(useful in combination with --include-task)")
113
120
  .example("ui5 build dev",
114
- "Build project and dependencies in dev mode. Only a set of essential tasks is executed.");
121
+ "Build project and dependencies in dev mode. Only a set of essential tasks is executed.")
122
+ .example("ui5 build --experimental-css-variables",
123
+ "Preload build for project without dependencies but with CSS variable artefacts");
115
124
  };
116
125
 
117
126
  async function handleBuild(argv) {
@@ -162,7 +171,8 @@ async function handleBuild(argv) {
162
171
  jsdoc: command === "jsdoc",
163
172
  devExcludeProject: argv["dev-exclude-project"],
164
173
  includedTasks: argv["include-task"],
165
- excludedTasks: argv["exclude-task"]
174
+ excludedTasks: argv["exclude-task"],
175
+ cssVariables: argv["experimental-css-variables"]
166
176
  });
167
177
  }
168
178