@codedrifters/configulator 0.0.447 → 0.0.449
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 +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +6 -3
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +6 -3
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -34475,7 +34475,7 @@ var VERSION = {
|
|
|
34475
34475
|
/**
|
|
34476
34476
|
* What version of the turborepo library should we use?
|
|
34477
34477
|
*/
|
|
34478
|
-
TURBO_VERSION: "2.10.
|
|
34478
|
+
TURBO_VERSION: "2.10.10",
|
|
34479
34479
|
/**
|
|
34480
34480
|
* Version of `@types/node` to use across all packages (pnpm catalog).
|
|
34481
34481
|
*/
|
|
@@ -41038,6 +41038,7 @@ var LabelsFile = class extends Component19 {
|
|
|
41038
41038
|
|
|
41039
41039
|
// src/projects/monorepo-project.ts
|
|
41040
41040
|
var CONFIGULATOR_PACKAGE_NAME = "@codedrifters/configulator";
|
|
41041
|
+
var NON_CI_STEP_ENV = { CI: "false" };
|
|
41041
41042
|
var postInstallDependenciesMap = /* @__PURE__ */ new WeakMap();
|
|
41042
41043
|
var MonorepoProject = class extends TypeScriptAppProject {
|
|
41043
41044
|
constructor(userOptions) {
|
|
@@ -41349,7 +41350,8 @@ var MonorepoProject = class extends TypeScriptAppProject {
|
|
|
41349
41350
|
});
|
|
41350
41351
|
jobWithSteps.steps.splice(insertIndex + 1, 0, {
|
|
41351
41352
|
name: "Synthesize",
|
|
41352
|
-
run: this.runTaskCommand(this.defaultTask)
|
|
41353
|
+
run: this.runTaskCommand(this.defaultTask),
|
|
41354
|
+
env: { ...NON_CI_STEP_ENV }
|
|
41353
41355
|
});
|
|
41354
41356
|
}
|
|
41355
41357
|
jobWithSteps.steps.splice(
|
|
@@ -41357,7 +41359,8 @@ var MonorepoProject = class extends TypeScriptAppProject {
|
|
|
41357
41359
|
0,
|
|
41358
41360
|
{
|
|
41359
41361
|
name: "Run subproject upgrades",
|
|
41360
|
-
run: "pnpm -r run upgrade"
|
|
41362
|
+
run: "pnpm -r run upgrade",
|
|
41363
|
+
env: { ...NON_CI_STEP_ENV }
|
|
41361
41364
|
}
|
|
41362
41365
|
);
|
|
41363
41366
|
}
|