@eui/tools 5.3.60 → 5.3.62
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 +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/scripts/csdr/config/angular.js +3 -3
- package/scripts/csdr/init/resources/15.x/browserslistrc +6 -0
- package/scripts/csdr/init/resources/15.x/resolutions.json.temp +6 -0
- package/scripts/csdr/init/resources/15.x/yarn.lock.temp +13999 -0
- package/scripts/utils/build/package/styles.js +7 -1
- package/scripts/utils/pre-build/injection/skeletons.js +1 -1
- package/scripts/utils/pre-build/projects.js +2 -0
|
@@ -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 (
|
|
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);
|
|
@@ -55,7 +55,7 @@ module.exports.injectCsdrFullSkeletonSources = (project, euiVersion) => {
|
|
|
55
55
|
// copying skeleton sources
|
|
56
56
|
if (euiVersion === '13.x') {
|
|
57
57
|
tools.copydir(path.join(__dirname, 'app-sources-full-skeleton-eui13'), project.folder, false);
|
|
58
|
-
} else if (euiVersion === '14.x') {
|
|
58
|
+
} else if (euiVersion === '14.x' || euiVersion === '15.x') {
|
|
59
59
|
tools.copydir(path.join(__dirname, 'app-sources-full-skeleton-eui14'), project.folder, false);
|
|
60
60
|
} else {
|
|
61
61
|
tools.copydir(path.join(__dirname, 'app-sources-full-skeleton'), project.folder, false);
|
|
@@ -79,6 +79,8 @@ module.exports.preBuild = (project, envTarget, build, configEnvTarget) => {
|
|
|
79
79
|
return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project, '13.x');
|
|
80
80
|
} else if (project.build && project.build.euiVersion === '14.x') {
|
|
81
81
|
return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project, '14.x');
|
|
82
|
+
} else if (project.build && project.build.euiVersion === '15.x') {
|
|
83
|
+
return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project, '15.x');
|
|
82
84
|
} else {
|
|
83
85
|
return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project);
|
|
84
86
|
}
|