@eui/tools 6.3.17 → 6.3.19
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/sandbox.js +60 -40
- package/scripts/csdr/audit/yarn.js +101 -25
- package/scripts/csdr/config/global.js +21 -0
- package/scripts/csdr/init/global.js +28 -19
- package/scripts/csdr/init/resources/14.x/resolutions.json +2 -1
- package/scripts/csdr/init/resources/14.x/yarn.lock +4185 -3802
- package/scripts/csdr/release/package/ui.js +3 -3
- package/scripts/utils/notification/common.js +5 -0
- package/scripts/utils/pre-build/projects.js +1 -1
|
@@ -26,9 +26,9 @@ module.exports.install = (pkg, isMaster) => {
|
|
|
26
26
|
})
|
|
27
27
|
|
|
28
28
|
// CHECK INTERNAL DEPENDENCIES
|
|
29
|
-
.then(() => {
|
|
30
|
-
|
|
31
|
-
})
|
|
29
|
+
// .then(() => {
|
|
30
|
+
// return auditUtils.deps.audit(pkg);
|
|
31
|
+
// })
|
|
32
32
|
|
|
33
33
|
// CHECK STYLES USAGE
|
|
34
34
|
.then(() => {
|
|
@@ -79,6 +79,11 @@ module.exports.getMessage = (options) => {
|
|
|
79
79
|
message.detailText = 'For envTarget remote delivery or "à la carte", only the master branch is allowed for build, contact support if any question';
|
|
80
80
|
break;
|
|
81
81
|
|
|
82
|
+
case 'AUDIT_DEPENDENCIES_GATES_FAILED':
|
|
83
|
+
message.detailTitle = 'Audit dependencies gates for current eUI version contains blocking vulnerabilities - ABORTING!';
|
|
84
|
+
message.detailText = 'Check logs for more info or contact eUI support for detailed checks';
|
|
85
|
+
break;
|
|
86
|
+
|
|
82
87
|
default:
|
|
83
88
|
message.detailTitle = 'GENERAL ERROR!';
|
|
84
89
|
message.detailText = options.exception;
|
|
@@ -137,7 +137,7 @@ module.exports.preBuild = (project, envTarget, build, configEnvTarget) => {
|
|
|
137
137
|
|
|
138
138
|
// processing custom script injection if enabled in project config
|
|
139
139
|
.then(() => {
|
|
140
|
-
return this.
|
|
140
|
+
return this.processCustomEnvScriptInjection(project, envTarget);
|
|
141
141
|
})
|
|
142
142
|
|
|
143
143
|
|