@go-to-k/cdkd 0.159.1 → 0.159.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
@@ -41666,7 +41666,10 @@ var CfnLocalStateProvider = class {
41666
41666
  }
41667
41667
  getClient() {
41668
41668
  if (this.disposed) throw new Error("CfnLocalStateProvider used after dispose()");
41669
- if (!this.client) this.client = new CloudFormationClient({ region: this.region });
41669
+ if (!this.client) this.client = new CloudFormationClient({
41670
+ region: this.region,
41671
+ ...this.clientOptions.profile !== void 0 && { profile: this.clientOptions.profile }
41672
+ });
41670
41673
  return this.client;
41671
41674
  }
41672
41675
  /**
@@ -59488,7 +59491,7 @@ function reorderArgs(argv) {
59488
59491
  */
59489
59492
  async function main() {
59490
59493
  const program = new Command();
59491
- program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.159.1");
59494
+ program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.159.2");
59492
59495
  program.addCommand(createBootstrapCommand());
59493
59496
  program.addCommand(createSynthCommand());
59494
59497
  program.addCommand(createListCommand());