@devramps/cli 0.1.10 → 0.1.11

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/dist/index.js +3 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -116,6 +116,7 @@ var MultiStackProgress = class {
116
116
  this.spinnerFrame = (this.spinnerFrame + 1) % SPINNER_FRAMES.length;
117
117
  this.scheduleRender();
118
118
  }, 100);
119
+ if (this.spinnerInterval.unref) this.spinnerInterval.unref();
119
120
  }
120
121
  }
121
122
  /**
@@ -2880,8 +2881,10 @@ async function executeDeployment(plan, pipelines, pipelineArtifacts, authData, c
2880
2881
  header("Deployment Summary");
2881
2882
  if (results.failed === 0) {
2882
2883
  success(`All ${results.success} stack(s) deployed successfully!`);
2884
+ process.exit(0);
2883
2885
  } else {
2884
2886
  warn(`${results.success} stack(s) succeeded, ${results.failed} stack(s) failed.`);
2887
+ process.exit(1);
2885
2888
  }
2886
2889
  }
2887
2890
  async function deployOrgStack(plan, pipelines, authData, currentAccountId, options) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devramps/cli",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "DevRamps CLI - Bootstrap AWS infrastructure for CI/CD pipelines",
5
5
  "main": "dist/index.js",
6
6
  "bin": {