@codedrifters/configulator 0.0.312 → 0.0.313
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 +14 -0
- package/lib/index.d.ts +14 -0
- package/lib/index.js +8 -4
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +8 -4
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -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()",
|