@go-to-k/cdkd 0.132.0 → 0.132.2

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
@@ -49356,7 +49356,7 @@ async function localStartServiceCommand(target, options) {
49356
49356
  const cleanup = singleFlight(async () => {
49357
49357
  if (controller) await controller.shutdown();
49358
49358
  else await Promise.allSettled(runState.replicas.map((r) => cleanupEcsRun(r.state, { keepRunning: false }).catch(() => void 0)));
49359
- }, (err) => getLogger().debug(`service cleanup failed: ${err instanceof Error ? err.message : String(err)}`));
49359
+ }, (err) => getLogger().warn(`service cleanup failed: ${err instanceof Error ? err.message : String(err)}`));
49360
49360
  try {
49361
49361
  await applyRoleArnIfSet({
49362
49362
  roleArn: options.roleArn,
@@ -51707,7 +51707,7 @@ function reorderArgs(argv) {
51707
51707
  */
51708
51708
  async function main() {
51709
51709
  const program = new Command();
51710
- program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.132.0");
51710
+ program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.132.2");
51711
51711
  program.addCommand(createBootstrapCommand());
51712
51712
  program.addCommand(createSynthCommand());
51713
51713
  program.addCommand(createListCommand());