@codedrifters/configulator 0.0.312 → 0.0.314

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
@@ -28020,13 +28020,13 @@ var VERSION = {
28020
28020
  /**
28021
28021
  * Version of Astro to pin for AstroProject scaffolding.
28022
28022
  */
28023
- ASTRO_VERSION: "6.3.2",
28023
+ ASTRO_VERSION: "6.3.3",
28024
28024
  /**
28025
28025
  * CDK CLI for workflows and command line operations.
28026
28026
  *
28027
28027
  * CLI and lib are versioned separately, so this is the CLI version.
28028
28028
  */
28029
- AWS_CDK_CLI_VERSION: "2.1121.0",
28029
+ AWS_CDK_CLI_VERSION: "2.1122.0",
28030
28030
  /**
28031
28031
  * CDK Version to use for construct projects.
28032
28032
  *
@@ -28049,7 +28049,7 @@ var VERSION = {
28049
28049
  /**
28050
28050
  * Version of PNPM to use in workflows at github actions.
28051
28051
  */
28052
- PNPM_VERSION: "11.1.1",
28052
+ PNPM_VERSION: "11.1.2",
28053
28053
  /**
28054
28054
  * Version of Projen to use.
28055
28055
  */
@@ -28071,11 +28071,11 @@ var VERSION = {
28071
28071
  /**
28072
28072
  * What version of the turborepo library should we use?
28073
28073
  */
28074
- TURBO_VERSION: "2.9.12",
28074
+ TURBO_VERSION: "2.9.14",
28075
28075
  /**
28076
28076
  * Version of @types/node to use across all packages (pnpm catalog).
28077
28077
  */
28078
- TYPES_NODE_VERSION: "25.7.0",
28078
+ TYPES_NODE_VERSION: "25.8.0",
28079
28079
  /**
28080
28080
  * What version of Vite to use (pnpm override). Pinned to 5.x so Vitest 4.x
28081
28081
  * can load config (Vite 6+/7+ are ESM-only; see issue #142). Remove override
@@ -33838,11 +33838,15 @@ var MonorepoProject = class extends TypeScriptAppProject {
33838
33838
  new PnpmWorkspace(this, options.pnpmOptions?.pnpmWorkspaceOptions);
33839
33839
  if (options.turbo) {
33840
33840
  new TurboRepo(this, options.turboOptions);
33841
+ const defaultBuildSubProjectsStep = {
33842
+ name: "Build Sub Projects",
33843
+ run: `pnpm exec projen ${ROOT_CI_TASK_NAME}`
33844
+ };
33845
+ const buildSubProjectsSteps = options.ciBuildSteps ?? [
33846
+ defaultBuildSubProjectsStep
33847
+ ];
33841
33848
  this.buildWorkflow?.addPostBuildSteps(
33842
- {
33843
- name: "Build Sub Projects",
33844
- run: `pnpm exec projen ${ROOT_CI_TASK_NAME}`
33845
- },
33849
+ ...buildSubProjectsSteps,
33846
33850
  WorkflowSteps.uploadArtifact({
33847
33851
  name: "Upload Turbo runs",
33848
33852
  if: "always()",