@eui/tools 5.2.5 → 5.2.6
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/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.2.
|
|
1
|
+
5.2.6
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 5.2.6 (2022-05-12)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* added forced utf-8 charset for node-sass compilation of styles - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([44240fd5](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/44240fd54e6f9f735e1f51c734720f04cf4734cf))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 5.2.5 (2022-05-12)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -76,6 +76,11 @@ const compileSassFileNodeSass = (folder, filename, isNodeSassTildeImporterActive
|
|
|
76
76
|
|
|
77
77
|
.then((output) => {
|
|
78
78
|
// console.log(output);
|
|
79
|
+
tools.logInfo('forcing utf-8 charset');
|
|
80
|
+
let fileContent = tools.getFileContent(`${filePath}.css`);
|
|
81
|
+
fileContent = '@charset "UTF-8";' + fileContent;
|
|
82
|
+
tools.writeFileContent(`${filePath}.css`, fileContent);
|
|
83
|
+
|
|
79
84
|
console.log('Size ::: ' + fs.statSync(filePath + '.css').size);
|
|
80
85
|
|
|
81
86
|
tools.logSuccess(`OK ==> generated ${filePath}.css`);
|