@sun-asterisk/impact-analyzer 1.0.7 → 1.0.8
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/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -116,7 +116,7 @@ async function main() {
|
|
|
116
116
|
// Exit with code based on severity
|
|
117
117
|
if (impact.severity === 'critical' && ! cli.hasArg('no-fail')) {
|
|
118
118
|
console.log('⚠️ Critical impact detected - exiting with error code');
|
|
119
|
-
process.exit(
|
|
119
|
+
process.exit(0);
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
console.log('✨ Analysis completed successfully!\n');
|