@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.mjs
CHANGED
|
@@ -248,9 +248,11 @@ var _TurboRepo = class _TurboRepo extends Component2 {
|
|
|
248
248
|
this.envMode = options.envMode ?? "strict";
|
|
249
249
|
this.remoteCacheOptions = options.remoteCacheOptions;
|
|
250
250
|
this.buildAllTaskEnvVars = options.buildAllTaskEnvVars ?? {};
|
|
251
|
+
const rootGeneratedFiles = this.isRootProject ? this.project.components.filter((c) => c instanceof FileBase).map((c) => c.path) : [];
|
|
251
252
|
this.buildTask = new TurboRepoTask(this.project, {
|
|
252
253
|
name: ROOT_TURBO_TASK_NAME,
|
|
253
|
-
dependsOn: this.isRootProject ? [`^${ROOT_TURBO_TASK_NAME}`] : []
|
|
254
|
+
dependsOn: this.isRootProject ? [`^${ROOT_TURBO_TASK_NAME}`] : [],
|
|
255
|
+
...rootGeneratedFiles.length > 0 && { inputs: rootGeneratedFiles }
|
|
254
256
|
});
|
|
255
257
|
if (this.isRootProject) {
|
|
256
258
|
this.buildAllTask = this.project.tasks.addTask(ROOT_CI_TASK_NAME, {
|
|
@@ -776,15 +778,15 @@ var VERSION = {
|
|
|
776
778
|
/**
|
|
777
779
|
* Version of PNPM to use in workflows at github actions.
|
|
778
780
|
*/
|
|
779
|
-
PNPM_VERSION: "10.
|
|
781
|
+
PNPM_VERSION: "10.31.0",
|
|
780
782
|
/**
|
|
781
783
|
* Version of Projen to use.
|
|
782
784
|
*/
|
|
783
|
-
PROJEN_VERSION: "0.99.
|
|
785
|
+
PROJEN_VERSION: "0.99.19",
|
|
784
786
|
/**
|
|
785
787
|
* What version of the turborepo library should we use?
|
|
786
788
|
*/
|
|
787
|
-
TURBO_VERSION: "2.8.
|
|
789
|
+
TURBO_VERSION: "2.8.14",
|
|
788
790
|
/**
|
|
789
791
|
* What version of Vitest to use when testRunner is 'vitest'.
|
|
790
792
|
*/
|