@eui/tools 4.18.1 → 4.18.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.
@@ -1 +1 @@
1
- 4.18.1
1
+ 4.18.2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 4.18.2 (2021-12-13)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **styles:**
6
+ * fixes writeFileSync data argument - EUI-5266 [EUI-5266](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5266) ([e4937147](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/e4937147a412481e9d7bd33b5c717e7d5a532bcf))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 4.18.1 (2021-12-09)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "4.18.1",
3
+ "version": "4.18.2",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -141,7 +141,7 @@ const compileSassFileDartSass = (folder, filename) => {
141
141
  fs.writeFileSync(finalDest, postcssResult.css);
142
142
 
143
143
  if (postcssResult.map) {
144
- fs.writeFileSync(`${finalDest}.map`, postcssResult.map);
144
+ fs.writeFileSync(`${finalDest}.map`, postcssResult.map.toString());
145
145
  }
146
146
  });
147
147
  })