@ui5/webcomponents-tools 1.13.0-rc.0 → 1.13.0-rc.2

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
+ # [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
+
8
+ **Note:** Version bump only for package @ui5/webcomponents-tools
9
+
10
+
11
+
12
+
13
+
14
+ # [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)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **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))
20
+
21
+
22
+
23
+
24
+
6
25
  # [1.13.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0...v1.13.0-rc.0) (2023-04-06)
7
26
 
8
27
  **Note:** Version bump only for package @ui5/webcomponents-tools
@@ -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, filePath, packageName, css, includeDefaultTheme);
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.13.0-rc.0",
3
+ "version": "1.13.0-rc.2",
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": "91e44c0f44a29c545724fa181ca4611b4a2aee78"
81
+ "gitHead": "fd91cd336e3f2173bd207c5a78a881f3ddbf7ff0"
82
82
  }