@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.d.mts
CHANGED
|
@@ -11413,7 +11413,7 @@ declare const VERSION: {
|
|
|
11413
11413
|
/**
|
|
11414
11414
|
* What version of the turborepo library should we use?
|
|
11415
11415
|
*/
|
|
11416
|
-
readonly TURBO_VERSION: "2.10.
|
|
11416
|
+
readonly TURBO_VERSION: "2.10.10";
|
|
11417
11417
|
/**
|
|
11418
11418
|
* Version of `@types/node` to use across all packages (pnpm catalog).
|
|
11419
11419
|
*/
|
package/lib/index.d.ts
CHANGED
|
@@ -11462,7 +11462,7 @@ declare const VERSION: {
|
|
|
11462
11462
|
/**
|
|
11463
11463
|
* What version of the turborepo library should we use?
|
|
11464
11464
|
*/
|
|
11465
|
-
readonly TURBO_VERSION: "2.10.
|
|
11465
|
+
readonly TURBO_VERSION: "2.10.10";
|
|
11466
11466
|
/**
|
|
11467
11467
|
* Version of `@types/node` to use across all packages (pnpm catalog).
|
|
11468
11468
|
*/
|
package/lib/index.js
CHANGED
|
@@ -34872,7 +34872,7 @@ var VERSION = {
|
|
|
34872
34872
|
/**
|
|
34873
34873
|
* What version of the turborepo library should we use?
|
|
34874
34874
|
*/
|
|
34875
|
-
TURBO_VERSION: "2.10.
|
|
34875
|
+
TURBO_VERSION: "2.10.10",
|
|
34876
34876
|
/**
|
|
34877
34877
|
* Version of `@types/node` to use across all packages (pnpm catalog).
|
|
34878
34878
|
*/
|
|
@@ -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
|
}
|