@ui5/webcomponents-tools 2.7.1 → 2.7.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
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.7.3](https://github.com/SAP/ui5-webcomponents/compare/v2.7.1...v2.7.3) (2025-02-13)
7
+
8
+ **Note:** Version bump only for package @ui5/webcomponents-tools
9
+
10
+
11
+
12
+
13
+
6
14
  ## [2.7.1](https://github.com/SAP/ui5-webcomponents/compare/v2.7.0...v2.7.1) (2025-02-07)
7
15
 
8
16
  **Note:** Version bump only for package @ui5/webcomponents-tools
@@ -19,7 +19,7 @@ const getScripts = (options) => {
19
19
  // The script creates the "src/generated/js-imports/Illustration.js" file that registers loaders (dynamic JS imports) for each illustration
20
20
  const createIllustrationsLoadersScript = illustrationsData.map(illustrations => `node ${LIB}/generate-js-imports/illustrations.js ${illustrations.destinationPath} ${illustrations.dynamicImports.outputFile} ${illustrations.set} ${illustrations.collection} ${illustrations.dynamicImports.location} ${illustrations.dynamicImports.filterOut.join(" ")}`).join(" && ");
21
21
 
22
- const tsOption = !options.legacy;
22
+ const tsOption = !options.legacy || options.jsx;
23
23
  const tsCommandOld = tsOption ? "tsc" : "";
24
24
  let tsWatchCommandStandalone = tsOption ? "tsc --watch" : "";
25
25
  // this command is only used for standalone projects. monorepo projects get their watch from vite, so opt-out here
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-tools",
3
- "version": "2.7.1",
3
+ "version": "2.7.3",
4
4
  "description": "UI5 Web Components: webcomponents.tools",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -90,5 +90,5 @@
90
90
  "esbuild": "^0.19.9",
91
91
  "yargs": "^17.5.1"
92
92
  },
93
- "gitHead": "ac15553f68d3e22b4a3a70203976dbf1bb916724"
93
+ "gitHead": "3c8ad1de49fdfebae5a5a506f07b301cfa4be029"
94
94
  }