@go-to-k/cdkd 0.91.0 → 0.91.1

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
@@ -21504,6 +21504,28 @@ var TemplateParser = class {
21504
21504
  }
21505
21505
  return;
21506
21506
  }
21507
+ if ("Fn::Join" in obj) {
21508
+ const joinValue = obj["Fn::Join"];
21509
+ if (Array.isArray(joinValue) && joinValue.length >= 2) {
21510
+ this.extractRefsFromValue(joinValue[1], dependencies);
21511
+ }
21512
+ return;
21513
+ }
21514
+ if ("Fn::Select" in obj) {
21515
+ const selectValue = obj["Fn::Select"];
21516
+ if (Array.isArray(selectValue) && selectValue.length >= 2) {
21517
+ this.extractRefsFromValue(selectValue[0], dependencies);
21518
+ this.extractRefsFromValue(selectValue[1], dependencies);
21519
+ }
21520
+ return;
21521
+ }
21522
+ if ("Fn::Split" in obj) {
21523
+ const splitValue = obj["Fn::Split"];
21524
+ if (Array.isArray(splitValue) && splitValue.length >= 2) {
21525
+ this.extractRefsFromValue(splitValue[1], dependencies);
21526
+ }
21527
+ return;
21528
+ }
21507
21529
  Object.values(obj).forEach((v) => this.extractRefsFromValue(v, dependencies));
21508
21530
  }
21509
21531
  /**
@@ -80264,7 +80286,7 @@ function reorderArgs(argv) {
80264
80286
  }
80265
80287
  async function main() {
80266
80288
  const program = new Command18();
80267
- program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.91.0");
80289
+ program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.91.1");
80268
80290
  program.addCommand(createBootstrapCommand());
80269
80291
  program.addCommand(createSynthCommand());
80270
80292
  program.addCommand(createListCommand());