@eui/tools 6.12.36 → 6.12.38
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 +5 -12
- package/scripts/csdr/init/remotes/17.x/base/angular.json +87 -0
- package/scripts/csdr/init/remotes/17.x/base/browserslist +6 -0
- package/scripts/csdr/init/remotes/17.x/base/package.json_TO_REPLACE +10 -0
- package/scripts/csdr/init/remotes/17.x/base/tsconfig.app.json +24 -0
- package/scripts/csdr/init/remotes/17.x/base/yarn.lock +14275 -0
- package/scripts/csdr/init/remotes/17.x/full/common/app/eui-components.ts +9 -0
- package/scripts/csdr/init/remotes/17.x/full/common/app/fallback.component.ts +11 -0
- package/scripts/csdr/init/remotes/17.x/full/common/app/module.component.ts +91 -0
- package/scripts/csdr/init/remotes/17.x/full/common/app/module.ts +96 -0
- package/scripts/csdr/init/remotes/17.x/full/common/app/reducers/custom-route-serializer.ts +28 -0
- package/scripts/csdr/init/remotes/17.x/full/common/app/reducers/index.ts +42 -0
- package/scripts/csdr/init/remotes/17.x/full/common/app/routing.module.ts +34 -0
- package/scripts/csdr/init/remotes/17.x/full/common/assets/.gitkeep +0 -0
- package/scripts/csdr/init/remotes/17.x/full/common/config/global.ts +54 -0
- package/scripts/csdr/init/remotes/17.x/full/common/config/index.ts +10 -0
- package/scripts/csdr/init/remotes/17.x/full/common/config/modules.ts +3 -0
- package/scripts/csdr/init/remotes/17.x/full/common/environments/environment.prod.ts +3 -0
- package/scripts/csdr/init/remotes/17.x/full/common/environments/environment.ts +3 -0
- package/scripts/csdr/init/remotes/17.x/full/common/favicon.ico +0 -0
- package/scripts/csdr/init/remotes/17.x/full/common/index.html +10 -0
- package/scripts/csdr/init/remotes/17.x/full/common/main.ts +11 -0
- package/scripts/csdr/init/remotes/17.x/full/common/polyfills.ts +88 -0
- package/scripts/csdr/init/remotes/17.x/full/common/test.ts +20 -0
- package/scripts/csdr/init/remotes/17.x/full/options/ag-grid/main.ts +17 -0
- package/scripts/csdr/init/remotes/17.x/full/options/all-locales/config/global.ts +122 -0
- package/scripts/csdr/init/remotes/17.x/full/options/definitions/dynamic-forms.json +4 -0
- package/scripts/csdr/init/remotes/17.x/full/options/definitions/dynatrace.json +4 -0
- package/scripts/csdr/init/remotes/17.x/full/options/definitions/participant.json +3 -0
- package/scripts/csdr/init/remotes/17.x/full/options/definitions/user-reducers.json +3 -0
- package/scripts/csdr/init/remotes/17.x/full/options/definitions/zipkin.json +5 -0
- package/scripts/csdr/init/remotes/17.x/full/options/participant/app/module.component.ts +94 -0
- package/scripts/csdr/init/remotes/17.x/full/options/participant/app/routing.module.ts +26 -0
- package/scripts/csdr/init/remotes/17.x/full/options/participant/config/index.ts +10 -0
- package/scripts/csdr/init/remotes/17.x/full/options/user-reducers/app/reducers/index.ts +66 -0
- package/scripts/csdr/init/resources/17.x/browserslistrc +6 -0
- package/scripts/csdr/init/resources/17.x/resolutions.json +5 -0
- package/scripts/csdr/init/resources/17.x/yarn.lock +13395 -0
- package/scripts/csdr/metadata/stats.js +1 -0
- package/scripts/utils/build/package/build-package-utils.js +1 -1
- package/scripts/utils/build/package/styles.js +2 -1
- package/scripts/utils/notification/slack-utils.js +2 -1
- package/scripts/utils/pre-build/injection/skeletons.js +1 -1
- package/scripts/utils/pre-build/projects.js +2 -0
|
@@ -467,6 +467,7 @@ module.exports.getRemoteAllStats = () => {
|
|
|
467
467
|
})
|
|
468
468
|
.then(() => {
|
|
469
469
|
let remotesArray = [
|
|
470
|
+
...configUtils.remotes.getCsdrRemotesArray('my-workplace', '17.x'),
|
|
470
471
|
...configUtils.remotes.getCsdrRemotesArray('my-workplace', '16.x'),
|
|
471
472
|
...configUtils.remotes.getCsdrRemotesArray('my-workplace', '15.x'),
|
|
472
473
|
];
|
|
@@ -217,7 +217,7 @@ module.exports.buildSubEntry = (pkg, subEntry) => {
|
|
|
217
217
|
.then(() => {
|
|
218
218
|
let packageEuiVersion = configUtils.packages.getPackageEuiVersion(pkg);
|
|
219
219
|
|
|
220
|
-
if (packageEuiVersion === '15.x' || packageEuiVersion === '16.x') {
|
|
220
|
+
if (packageEuiVersion === '15.x' || packageEuiVersion === '16.x' || packageEuiVersion === '17.x') {
|
|
221
221
|
const { skipTest } = tools.getArgs();
|
|
222
222
|
|
|
223
223
|
if (!skipTest) {
|
|
@@ -180,7 +180,8 @@ const compileSassFile = (pkg, folder, filename, isNodeSassTildeImporterActive) =
|
|
|
180
180
|
pkg.build.euiVersion === '13.x' ||
|
|
181
181
|
pkg.build.euiVersion === '14.x' ||
|
|
182
182
|
pkg.build.euiVersion === '15.x' ||
|
|
183
|
-
pkg.build.euiVersion === '16.x'
|
|
183
|
+
pkg.build.euiVersion === '16.x' ||
|
|
184
|
+
pkg.build.euiVersion === '17.x'
|
|
184
185
|
)) {
|
|
185
186
|
return compileSassFileDartSass(folder, filename);
|
|
186
187
|
|
|
@@ -79,7 +79,7 @@ const sendMessageCore = (hook, channel, attachments, text = null) => {
|
|
|
79
79
|
|
|
80
80
|
req.on('error', (e) => {
|
|
81
81
|
console.log(e);
|
|
82
|
-
|
|
82
|
+
resolve();
|
|
83
83
|
});
|
|
84
84
|
|
|
85
85
|
req.write(postData);
|
|
@@ -96,6 +96,7 @@ const sendMessage = (hook, channel, attachments, text = null) => {
|
|
|
96
96
|
.catch((e) => {
|
|
97
97
|
tools.logError('Error sending slack message');
|
|
98
98
|
console.log(e); // do not rethrow
|
|
99
|
+
return Promise.resolve();
|
|
99
100
|
})
|
|
100
101
|
};
|
|
101
102
|
|
|
@@ -56,7 +56,7 @@ module.exports.injectCsdrFullSkeletonSources = (project, euiVersion) => {
|
|
|
56
56
|
// copying skeleton sources
|
|
57
57
|
if (euiVersion === '13.x') {
|
|
58
58
|
tools.copydir(path.join(__dirname, 'app-sources-full-skeleton-eui13'), project.folder, false);
|
|
59
|
-
} else if (euiVersion === '14.x' || euiVersion === '15.x' || euiVersion === '16.x') {
|
|
59
|
+
} else if (euiVersion === '14.x' || euiVersion === '15.x' || euiVersion === '16.x' || euiVersion === '17.x') {
|
|
60
60
|
tools.copydir(path.join(__dirname, 'app-sources-full-skeleton-eui14'), project.folder, false);
|
|
61
61
|
} else {
|
|
62
62
|
tools.copydir(path.join(__dirname, 'app-sources-full-skeleton'), project.folder, false);
|
|
@@ -76,6 +76,8 @@ module.exports.preBuild = (project, envTarget, build, configEnvTarget) => {
|
|
|
76
76
|
return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project, '15.x');
|
|
77
77
|
} else if (project.build && project.build.euiVersion === '16.x') {
|
|
78
78
|
return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project, '16.x');
|
|
79
|
+
} else if (project.build && project.build.euiVersion === '17.x') {
|
|
80
|
+
return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project, '17.x');
|
|
79
81
|
} else {
|
|
80
82
|
return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project);
|
|
81
83
|
}
|