@ui5/webcomponents-tools 2.6.2-rc.0 → 2.6.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,25 @@
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.6.3](https://github.com/SAP/ui5-webcomponents/compare/v2.6.2...v2.6.3) (2025-01-29)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **ui5-*:** fix jsx templates boolean checks ([#10516](https://github.com/SAP/ui5-webcomponents/issues/10516)) ([b31c7b5](https://github.com/SAP/ui5-webcomponents/commit/b31c7b5de74272f69287985763f4f01ef46169db)), closes [#10509](https://github.com/SAP/ui5-webcomponents/issues/10509)
12
+
13
+
14
+
15
+
16
+
17
+ ## [2.6.2](https://github.com/SAP/ui5-webcomponents/compare/v2.6.2-rc.0...v2.6.2) (2025-01-09)
18
+
19
+ **Note:** Version bump only for package @ui5/webcomponents-tools
20
+
21
+
22
+
23
+
24
+
6
25
  ## [2.6.2-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.6.1...v2.6.2-rc.0) (2025-01-09)
7
26
 
8
27
  **Note:** Version bump only for package @ui5/webcomponents-tools
@@ -42,8 +42,10 @@ const getTsModeOverrides = () => {
42
42
 
43
43
  const tsxConfiguration = JSON.parse(JSON.stringify(tsConfiguration));
44
44
  tsxConfiguration.files = ["*.tsx"];
45
+ tsxConfiguration.plugins.push("jsx-no-leaked-values");
45
46
  tsxConfiguration.rules = {
46
47
  ...tsxConfiguration.rules,
48
+ "jsx-no-leaked-values/jsx-no-leaked-values": "error",
47
49
  "@typescript-eslint/unbound-method": "off", // to be able to attach on* listeners
48
50
  "@typescript-eslint/no-misused-promises": "off", // to be able to have async event listeners
49
51
  "operator-linebreak": "off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-tools",
3
- "version": "2.6.2-rc.0",
3
+ "version": "2.6.3",
4
4
  "description": "UI5 Web Components: webcomponents.tools",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -49,6 +49,7 @@
49
49
  "eslint-config-airbnb-base": "^14.2.1",
50
50
  "eslint-plugin-cypress": "^3.4.0",
51
51
  "eslint-plugin-import": "^2.31.0",
52
+ "eslint-plugin-jsx-no-leaked-values": "^0.1.24",
52
53
  "esprima": "^4.0.1",
53
54
  "getopts": "^2.3.0",
54
55
  "glob": "^7.1.6",
@@ -86,5 +87,5 @@
86
87
  "esbuild": "^0.19.9",
87
88
  "yargs": "^17.5.1"
88
89
  },
89
- "gitHead": "dfe4115234a48f7b174d86c0118b552d13403e5e"
90
+ "gitHead": "bc2bbd402a353d5feb03a08133742dfaace6f77a"
90
91
  }