@ui5/webcomponents-tools 1.12.1 → 1.13.0-rc.1
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 +10 -2
- package/lib/postcss-css-to-esm/index.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -3,12 +3,20 @@
|
|
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
|
-
|
6
|
+
# [1.13.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.0...v1.13.0-rc.1) (2023-04-13)
|
7
7
|
|
8
8
|
|
9
9
|
### Bug Fixes
|
10
10
|
|
11
|
-
* **
|
11
|
+
* **framework:** correct fileName in component CSS import ([#6900](https://github.com/SAP/ui5-webcomponents/issues/6900)) ([4d950c5](https://github.com/SAP/ui5-webcomponents/commit/4d950c5ea3bee0e3b629e5797693ecf41a2cdfd3))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
# [1.13.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0...v1.13.0-rc.0) (2023-04-06)
|
18
|
+
|
19
|
+
**Note:** Version bump only for package @ui5/webcomponents-tools
|
12
20
|
|
13
21
|
|
14
22
|
|
@@ -70,7 +70,7 @@ module.exports = function (opts) {
|
|
70
70
|
mkdirp.sync(path.dirname(targetFile));
|
71
71
|
|
72
72
|
const filePath = `${targetFile}.${tsMode ? "ts" : "js"}`;
|
73
|
-
|
73
|
+
|
74
74
|
// it seems slower to read the old content, but writing the same content with no real changes
|
75
75
|
// (as in initial build and then watch mode) will cause an unnecessary dev server refresh
|
76
76
|
let oldContent = "";
|
@@ -80,7 +80,7 @@ module.exports = function (opts) {
|
|
80
80
|
// file not found
|
81
81
|
}
|
82
82
|
|
83
|
-
const content = getFileContent(tsMode,
|
83
|
+
const content = getFileContent(tsMode, targetFile, packageName, css, includeDefaultTheme);
|
84
84
|
if (content !== oldContent) {
|
85
85
|
fs.writeFileSync(filePath, content);
|
86
86
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ui5/webcomponents-tools",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.13.0-rc.1",
|
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": "3106a0b6832f916cdb4b50326829b6750d712da1"
|
82
82
|
}
|