@devramps/cli 0.1.13 → 0.1.14

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 +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2595,12 +2595,12 @@ async function bootstrapCommand(options) {
2595
2595
  spinner.succeed("Deployment plan ready");
2596
2596
  if (options.dryRun) {
2597
2597
  await showDryRunPlan(plan);
2598
- return;
2598
+ process.exit(0);
2599
2599
  }
2600
2600
  const confirmed = await confirmDeploymentPlan(plan);
2601
2601
  if (!confirmed) {
2602
2602
  info("Deployment cancelled by user.");
2603
- return;
2603
+ process.exit(0);
2604
2604
  }
2605
2605
  const oidcProviderUrl = getOidcProviderUrlFromEndpoint(options.endpointOverride);
2606
2606
  await executeDeployment(plan, pipelines, pipelineArtifacts, authData, identity.accountId, options, oidcProviderUrl);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devramps/cli",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "DevRamps CLI - Bootstrap AWS infrastructure for CI/CD pipelines",
5
5
  "main": "dist/index.js",
6
6
  "bin": {