@eui/tools 5.3.59 → 5.3.61

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.
@@ -94,6 +94,9 @@ module.exports.run = () => {
94
94
  if (pkg.remote) {
95
95
  return innerRemote.install(pkg, envTarget, compositeType);
96
96
 
97
+ } else if (pkg.backend) {
98
+ return {};
99
+
97
100
  } else {
98
101
  return innerUi.install(pkg, branches.isMaster);
99
102
  }
@@ -174,7 +174,13 @@ const compileSassFileDartSass = (folder, filename) => {
174
174
  const compileSassFile = (pkg, folder, filename, isNodeSassTildeImporterActive) => {
175
175
  return Promise.resolve()
176
176
  .then(() => {
177
- if (pkg.build && (pkg.build.euiVersion === '13.x' || pkg.build.euiVersion === '14.x')) {
177
+ if (
178
+ pkg.build &&
179
+ (
180
+ pkg.build.euiVersion === '13.x' ||
181
+ pkg.build.euiVersion === '14.x' ||
182
+ pkg.build.euiVersion === '15.x'
183
+ )) {
178
184
  return compileSassFileDartSass(folder, filename);
179
185
  } else {
180
186
  return compileSassFileNodeSass(folder, filename, isNodeSassTildeImporterActive);