@eui/tools 4.21.7 → 4.21.8
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
|
-
4.21.
|
|
1
|
+
4.21.8
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 4.21.8 (2022-03-24)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* added eUI 14 for dart sass compilation of styles - EUI-5739 [EUI-5739](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5739) ([a4f2f772](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/a4f2f772bdfc4f7e4ddcc21245172f7c8e5e6f97))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 4.21.7 (2022-03-22)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -169,7 +169,7 @@ const compileSassFileDartSass = (folder, filename) => {
|
|
|
169
169
|
const compileSassFile = (pkg, folder, filename, isNodeSassTildeImporterActive) => {
|
|
170
170
|
return Promise.resolve()
|
|
171
171
|
.then(() => {
|
|
172
|
-
if (pkg.build && pkg.build.euiVersion === '13.x') {
|
|
172
|
+
if (pkg.build && (pkg.build.euiVersion === '13.x' || pkg.build.euiVersion === '14.x')) {
|
|
173
173
|
return compileSassFileDartSass(folder, filename);
|
|
174
174
|
} else {
|
|
175
175
|
return compileSassFileNodeSass(folder, filename, isNodeSassTildeImporterActive);
|