@ui5/webcomponents-tools 1.13.0-rc.2 → 1.13.0-rc.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
|
+
# [1.13.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.2...v1.13.0-rc.3) (2023-04-27)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @ui5/webcomponents-tools
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
6
14
|
# [1.13.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.1...v1.13.0-rc.2) (2023-04-20)
|
7
15
|
|
8
16
|
**Note:** Version bump only for package @ui5/webcomponents-tools
|
@@ -49,7 +49,7 @@ const convertImports = async (srcPath) => {
|
|
49
49
|
|
50
50
|
const generate = async () => {
|
51
51
|
const { globby } = await import("globby");
|
52
|
-
const fileNames = await globby(basePath + "**/*.js");
|
52
|
+
const fileNames = await globby(basePath.replace(/\\/g, "/") + "**/*.js");
|
53
53
|
return Promise.all(fileNames.map(convertImports).filter(x => !!x));
|
54
54
|
};
|
55
55
|
|
package/lib/i18n/toJSON.js
CHANGED
@@ -34,7 +34,7 @@ const convertToJSON = async (file) => {
|
|
34
34
|
const generate = async () => {
|
35
35
|
const { globby } = await import("globby");
|
36
36
|
await fs.mkdir(messagesJSONDist, { recursive: true });
|
37
|
-
const files = await globby(messagesBundles);
|
37
|
+
const files = await globby(messagesBundles.replace(/\\/g, "/"));
|
38
38
|
return Promise.all(files.map(convertToJSON));
|
39
39
|
};
|
40
40
|
|
package/lib/jsdoc/preprocess.js
CHANGED
@@ -8,7 +8,7 @@ const sourceDir = process.argv[3];
|
|
8
8
|
const preprocessTypes = async () => {
|
9
9
|
try {
|
10
10
|
const { globby } = await import("globby");
|
11
|
-
const fileNames = await globby(inputDir + "**/types/*.js");
|
11
|
+
const fileNames = await globby(inputDir.replace(/\\/g, "/") + "**/types/*.js");
|
12
12
|
|
13
13
|
return Promise.all(fileNames.map(processTypeFile));
|
14
14
|
} catch(e) {
|
@@ -63,7 +63,7 @@ const preprocessComponents = async () => {
|
|
63
63
|
|
64
64
|
try {
|
65
65
|
const { globby } = await import("globby");
|
66
|
-
const fileNames = await globby(sourceDir + "/*.ts");
|
66
|
+
const fileNames = await globby(sourceDir.replace(/\\/g, "/") + "/*.ts");
|
67
67
|
|
68
68
|
return Promise.all(fileNames.map(processComponentFile));
|
69
69
|
} catch(e) {
|
@@ -16,7 +16,7 @@ const replaceGlobalCoreUsage = async (srcPath) => {
|
|
16
16
|
|
17
17
|
const generate = async () => {
|
18
18
|
const { globby } = await import("globby");
|
19
|
-
const fileNames = await globby(basePath + "**/*.js");
|
19
|
+
const fileNames = await globby(basePath.replace(/\\/g, "/") + "**/*.js");
|
20
20
|
return Promise.all(fileNames.map(replaceGlobalCoreUsage).filter(x => !!x));
|
21
21
|
};
|
22
22
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ui5/webcomponents-tools",
|
3
|
-
"version": "1.13.0-rc.
|
3
|
+
"version": "1.13.0-rc.3",
|
4
4
|
"description": "UI5 Web Components: webcomponents.tools",
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
6
6
|
"license": "Apache-2.0",
|
@@ -78,5 +78,5 @@
|
|
78
78
|
"devDependencies": {
|
79
79
|
"yargs": "^17.5.1"
|
80
80
|
},
|
81
|
-
"gitHead": "
|
81
|
+
"gitHead": "61c17ec60eb103e9b98d0acee1256be98430fbaf"
|
82
82
|
}
|