@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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. 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(1);
119
+ process.exit(0);
120
120
  }
121
121
 
122
122
  console.log('✨ Analysis completed successfully!\n');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sun-asterisk/impact-analyzer",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Automated impact analysis for TypeScript/JavaScript projects",
5
5
  "main": "index.js",
6
6
  "type": "module",