@codedrifters/configulator 0.0.446 → 0.0.448

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.d.mts CHANGED
@@ -11362,7 +11362,7 @@ declare const VERSION: {
11362
11362
  /**
11363
11363
  * Version of Astro to pin for AstroProject scaffolding.
11364
11364
  */
11365
- readonly ASTRO_VERSION: "7.2.1";
11365
+ readonly ASTRO_VERSION: "7.2.2";
11366
11366
  /**
11367
11367
  * CDK CLI for workflows and command line operations.
11368
11368
  *
@@ -11374,7 +11374,7 @@ declare const VERSION: {
11374
11374
  *
11375
11375
  * CLI and lib are versioned separately, so this is the lib version.
11376
11376
  */
11377
- readonly AWS_CDK_LIB_VERSION: "2.264.0";
11377
+ readonly AWS_CDK_LIB_VERSION: "2.265.0";
11378
11378
  /**
11379
11379
  * Version of the AWS Constructs library to use.
11380
11380
  */
package/lib/index.d.ts CHANGED
@@ -11411,7 +11411,7 @@ declare const VERSION: {
11411
11411
  /**
11412
11412
  * Version of Astro to pin for AstroProject scaffolding.
11413
11413
  */
11414
- readonly ASTRO_VERSION: "7.2.1";
11414
+ readonly ASTRO_VERSION: "7.2.2";
11415
11415
  /**
11416
11416
  * CDK CLI for workflows and command line operations.
11417
11417
  *
@@ -11423,7 +11423,7 @@ declare const VERSION: {
11423
11423
  *
11424
11424
  * CLI and lib are versioned separately, so this is the lib version.
11425
11425
  */
11426
- readonly AWS_CDK_LIB_VERSION: "2.264.0";
11426
+ readonly AWS_CDK_LIB_VERSION: "2.265.0";
11427
11427
  /**
11428
11428
  * Version of the AWS Constructs library to use.
11429
11429
  */
package/lib/index.js CHANGED
@@ -34821,7 +34821,7 @@ var VERSION = {
34821
34821
  /**
34822
34822
  * Version of Astro to pin for AstroProject scaffolding.
34823
34823
  */
34824
- ASTRO_VERSION: "7.2.1",
34824
+ ASTRO_VERSION: "7.2.2",
34825
34825
  /**
34826
34826
  * CDK CLI for workflows and command line operations.
34827
34827
  *
@@ -34833,7 +34833,7 @@ var VERSION = {
34833
34833
  *
34834
34834
  * CLI and lib are versioned separately, so this is the lib version.
34835
34835
  */
34836
- AWS_CDK_LIB_VERSION: "2.264.0",
34836
+ AWS_CDK_LIB_VERSION: "2.265.0",
34837
34837
  /**
34838
34838
  * Version of the AWS Constructs library to use.
34839
34839
  */
@@ -41426,6 +41426,7 @@ var LabelsFile = class extends import_projen21.Component {
41426
41426
 
41427
41427
  // src/projects/monorepo-project.ts
41428
41428
  var CONFIGULATOR_PACKAGE_NAME = "@codedrifters/configulator";
41429
+ var NON_CI_STEP_ENV = { CI: "false" };
41429
41430
  var postInstallDependenciesMap = /* @__PURE__ */ new WeakMap();
41430
41431
  var MonorepoProject = class extends import_typescript3.TypeScriptAppProject {
41431
41432
  constructor(userOptions) {
@@ -41737,7 +41738,8 @@ var MonorepoProject = class extends import_typescript3.TypeScriptAppProject {
41737
41738
  });
41738
41739
  jobWithSteps.steps.splice(insertIndex + 1, 0, {
41739
41740
  name: "Synthesize",
41740
- run: this.runTaskCommand(this.defaultTask)
41741
+ run: this.runTaskCommand(this.defaultTask),
41742
+ env: { ...NON_CI_STEP_ENV }
41741
41743
  });
41742
41744
  }
41743
41745
  jobWithSteps.steps.splice(
@@ -41745,7 +41747,8 @@ var MonorepoProject = class extends import_typescript3.TypeScriptAppProject {
41745
41747
  0,
41746
41748
  {
41747
41749
  name: "Run subproject upgrades",
41748
- run: "pnpm -r run upgrade"
41750
+ run: "pnpm -r run upgrade",
41751
+ env: { ...NON_CI_STEP_ENV }
41749
41752
  }
41750
41753
  );
41751
41754
  }