@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.
@@ -26,9 +26,9 @@ module.exports.install = (pkg, isMaster) => {
26
26
  })
27
27
 
28
28
  // CHECK INTERNAL DEPENDENCIES
29
- .then(() => {
30
- return auditUtils.deps.audit(pkg);
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.processCustomScriptsInjection(project, envTarget);
140
+ return this.processCustomEnvScriptInjection(project, envTarget);
141
141
  })
142
142
 
143
143