@ui5/webcomponents-tools 2.17.0-rc.3 → 2.17.0-rc.4
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 +11 -0
- package/components-package/nps.js +2 -1
- package/lib/i18n/toJSON.js +1 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.17.0-rc.4](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.3...v2.17.0-rc.4) (2025-11-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **build:** fix issue with legacy dev setup ([#12706](https://github.com/UI5/webcomponents/issues/12706)) ([89fa5ca](https://github.com/UI5/webcomponents/commit/89fa5ca9f83551363e8c1d9980269cd58fa09d85))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [2.17.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.2...v2.17.0-rc.3) (2025-11-20)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -129,6 +129,7 @@ const getScripts = (options) => {
|
|
|
129
129
|
},
|
|
130
130
|
copyProps: `ui5nps-script "${LIB}copy-and-watch/index.js" --silent "src/i18n/*.properties" dist/`,
|
|
131
131
|
copyPropsWithWatch: `ui5nps-script "${LIB}copy-and-watch/index.js" --silent "src/i18n/*.properties" dist/ --watch --safe --skip-initial-copy`,
|
|
132
|
+
copySrcWithWatch: `ui5nps-script "${LIB}copy-and-watch/index.js" --silent "src/**/*.{js,json}" dist/ --watch --safe --skip-initial-copy`,
|
|
132
133
|
copy: {
|
|
133
134
|
default: options.legacy ? "ui5nps copy.src copy.props" : "",
|
|
134
135
|
src: options.legacy ? `ui5nps-script "${LIB}copy-and-watch/index.js" --silent "src/**/*.{js,json}" dist/` : "",
|
|
@@ -137,7 +138,7 @@ const getScripts = (options) => {
|
|
|
137
138
|
watch: {
|
|
138
139
|
default: `ui5nps-p watch.templates watch.typescript watch.src watch.styles watch.i18n watch.props`, // concurently
|
|
139
140
|
devServer: 'ui5nps-p watch.default watch.bundle', // concurently
|
|
140
|
-
src: options.legacy ? 'ui5nps
|
|
141
|
+
src: options.legacy ? 'ui5nps copySrcWithWatch' : "",
|
|
141
142
|
typescript: tsWatchCommandStandalone,
|
|
142
143
|
props: 'ui5nps copyPropsWithWatch',
|
|
143
144
|
bundle: `ui5nps-script ${LIB}dev-server/dev-server.mjs ${viteConfig}`,
|
package/lib/i18n/toJSON.js
CHANGED
|
@@ -19,8 +19,7 @@ const convertToJSON = async (file, distPath) => {
|
|
|
19
19
|
const filename = path.basename(file, path.extname(file));
|
|
20
20
|
const language = filename.match(/^messagebundle_(.*?)$/)[1];
|
|
21
21
|
if (!allLanguages.includes(language)) {
|
|
22
|
-
console.
|
|
23
|
-
return;
|
|
22
|
+
console.warn("Not supported language or script: ", language);
|
|
24
23
|
}
|
|
25
24
|
const outputFile = path.normalize(`${distPath}/${filename}.json`);
|
|
26
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/webcomponents-tools",
|
|
3
|
-
"version": "2.17.0-rc.
|
|
3
|
+
"version": "2.17.0-rc.4",
|
|
4
4
|
"description": "UI5 Web Components: webcomponents.tools",
|
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"esbuild": "^0.25.0",
|
|
85
85
|
"yargs": "^17.5.1"
|
|
86
86
|
},
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "b7e93525288be73f17828a4aec16465097c1550b"
|
|
88
88
|
}
|