@go-to-k/cdkd 0.94.7 → 0.94.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/dist/cli.js CHANGED
@@ -80449,7 +80449,7 @@ async function exportCommand(stackArg, options) {
80449
80449
  const injectedCount = injectDeletionPolicyForImport(phase1Template);
80450
80450
  if (injectedCount > 0) {
80451
80451
  logger.info(
80452
- `Injected DeletionPolicy: Retain on ${injectedCount} resource(s) without an explicit DeletionPolicy (required by CFn IMPORT). The first \`cdk deploy\` after export will reset each to your CDK-declared value.`
80452
+ `Injected DeletionPolicy: Delete on ${injectedCount} resource(s) without an explicit DeletionPolicy (required by CFn IMPORT \u2014 matches the CDK/CFn default for resources without RemovalPolicy).`
80453
80453
  );
80454
80454
  }
80455
80455
  await executeImportChangeSet(
@@ -80842,7 +80842,7 @@ function injectDeletionPolicyForImport(template) {
80842
80842
  continue;
80843
80843
  const r = resource;
80844
80844
  if (r["DeletionPolicy"] === void 0) {
80845
- r["DeletionPolicy"] = "Retain";
80845
+ r["DeletionPolicy"] = "Delete";
80846
80846
  injected++;
80847
80847
  }
80848
80848
  }
@@ -81256,7 +81256,7 @@ function reorderArgs(argv) {
81256
81256
  }
81257
81257
  async function main() {
81258
81258
  const program = new Command18();
81259
- program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.94.7");
81259
+ program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.94.8");
81260
81260
  program.addCommand(createBootstrapCommand());
81261
81261
  program.addCommand(createSynthCommand());
81262
81262
  program.addCommand(createListCommand());