@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.
- package/dist/index.js +3 -0
- 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) {
|