@codedrifters/configulator 0.0.123 → 0.0.124

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.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, {
@@ -780,11 +782,11 @@ var VERSION = {
780
782
  /**
781
783
  * Version of Projen to use.
782
784
  */
783
- PROJEN_VERSION: "0.99.18",
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.13",
789
+ TURBO_VERSION: "2.8.14",
788
790
  /**
789
791
  * What version of Vitest to use when testRunner is 'vitest'.
790
792
  */