@codedrifters/configulator 0.0.123 → 0.0.125
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 +3 -3
- package/lib/index.d.ts +3 -3
- package/lib/index.js +6 -4
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +6 -4
- package/lib/index.mjs.map +1 -1
- package/package.json +3 -3
package/lib/index.d.mts
CHANGED
|
@@ -390,15 +390,15 @@ declare const VERSION: {
|
|
|
390
390
|
/**
|
|
391
391
|
* Version of PNPM to use in workflows at github actions.
|
|
392
392
|
*/
|
|
393
|
-
readonly PNPM_VERSION: "10.
|
|
393
|
+
readonly PNPM_VERSION: "10.31.0";
|
|
394
394
|
/**
|
|
395
395
|
* Version of Projen to use.
|
|
396
396
|
*/
|
|
397
|
-
readonly PROJEN_VERSION: "0.99.
|
|
397
|
+
readonly PROJEN_VERSION: "0.99.19";
|
|
398
398
|
/**
|
|
399
399
|
* What version of the turborepo library should we use?
|
|
400
400
|
*/
|
|
401
|
-
readonly TURBO_VERSION: "2.8.
|
|
401
|
+
readonly TURBO_VERSION: "2.8.14";
|
|
402
402
|
/**
|
|
403
403
|
* What version of Vitest to use when testRunner is 'vitest'.
|
|
404
404
|
*/
|
package/lib/index.d.ts
CHANGED
|
@@ -439,15 +439,15 @@ declare const VERSION: {
|
|
|
439
439
|
/**
|
|
440
440
|
* Version of PNPM to use in workflows at github actions.
|
|
441
441
|
*/
|
|
442
|
-
readonly PNPM_VERSION: "10.
|
|
442
|
+
readonly PNPM_VERSION: "10.31.0";
|
|
443
443
|
/**
|
|
444
444
|
* Version of Projen to use.
|
|
445
445
|
*/
|
|
446
|
-
readonly PROJEN_VERSION: "0.99.
|
|
446
|
+
readonly PROJEN_VERSION: "0.99.19";
|
|
447
447
|
/**
|
|
448
448
|
* What version of the turborepo library should we use?
|
|
449
449
|
*/
|
|
450
|
-
readonly TURBO_VERSION: "2.8.
|
|
450
|
+
readonly TURBO_VERSION: "2.8.14";
|
|
451
451
|
/**
|
|
452
452
|
* What version of Vitest to use when testRunner is 'vitest'.
|
|
453
453
|
*/
|
package/lib/index.js
CHANGED
|
@@ -276,9 +276,11 @@ var _TurboRepo = class _TurboRepo extends import_lib2.Component {
|
|
|
276
276
|
this.envMode = options.envMode ?? "strict";
|
|
277
277
|
this.remoteCacheOptions = options.remoteCacheOptions;
|
|
278
278
|
this.buildAllTaskEnvVars = options.buildAllTaskEnvVars ?? {};
|
|
279
|
+
const rootGeneratedFiles = this.isRootProject ? this.project.components.filter((c) => c instanceof import_lib2.FileBase).map((c) => c.path) : [];
|
|
279
280
|
this.buildTask = new TurboRepoTask(this.project, {
|
|
280
281
|
name: ROOT_TURBO_TASK_NAME,
|
|
281
|
-
dependsOn: this.isRootProject ? [`^${ROOT_TURBO_TASK_NAME}`] : []
|
|
282
|
+
dependsOn: this.isRootProject ? [`^${ROOT_TURBO_TASK_NAME}`] : [],
|
|
283
|
+
...rootGeneratedFiles.length > 0 && { inputs: rootGeneratedFiles }
|
|
282
284
|
});
|
|
283
285
|
if (this.isRootProject) {
|
|
284
286
|
this.buildAllTask = this.project.tasks.addTask(ROOT_CI_TASK_NAME, {
|
|
@@ -804,15 +806,15 @@ var VERSION = {
|
|
|
804
806
|
/**
|
|
805
807
|
* Version of PNPM to use in workflows at github actions.
|
|
806
808
|
*/
|
|
807
|
-
PNPM_VERSION: "10.
|
|
809
|
+
PNPM_VERSION: "10.31.0",
|
|
808
810
|
/**
|
|
809
811
|
* Version of Projen to use.
|
|
810
812
|
*/
|
|
811
|
-
PROJEN_VERSION: "0.99.
|
|
813
|
+
PROJEN_VERSION: "0.99.19",
|
|
812
814
|
/**
|
|
813
815
|
* What version of the turborepo library should we use?
|
|
814
816
|
*/
|
|
815
|
-
TURBO_VERSION: "2.8.
|
|
817
|
+
TURBO_VERSION: "2.8.14",
|
|
816
818
|
/**
|
|
817
819
|
* What version of Vitest to use when testRunner is 'vitest'.
|
|
818
820
|
*/
|