@codedrifters/configulator 0.0.436 → 0.0.438

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/lib/index.mjs CHANGED
@@ -43684,6 +43684,7 @@ var AwsCdkProject = class extends awscdk.AwsCdkTypeScriptApp {
43684
43684
  });
43685
43685
  this.gitignore?.addPatterns(".DS_Store", "test-reports", "cdk.out");
43686
43686
  this.npmignore?.addPatterns("*.spec.*", "*.test.*", "__fixtures__");
43687
+ new CdkCli(this, options.cdkCliOptions ?? {});
43687
43688
  new AwsDeploymentConfig(this);
43688
43689
  (options.deploymentTargets ?? []).forEach(
43689
43690
  (targetOptions) => this.addDeploymentTarget(targetOptions)
@@ -43715,7 +43716,6 @@ var AwsCdkProject = class extends awscdk.AwsCdkTypeScriptApp {
43715
43716
  const turboActive = TurboRepo.of(parent) !== void 0;
43716
43717
  if (turboActive) {
43717
43718
  const turbo = new TurboRepo(this);
43718
- turbo.postCompileTask?.outputs.push("dist/**");
43719
43719
  turbo.postCompileTask?.inputs.push("src/**");
43720
43720
  }
43721
43721
  if (options.agentConfig === true || typeof options.agentConfig === "object") {