@turbo/types 2.10.6 → 2.10.7-canary.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turbo/types",
3
- "version": "2.10.6",
3
+ "version": "2.10.7-canary.1",
4
4
  "description": "Turborepo types",
5
5
  "homepage": "https://turborepo.dev",
6
6
  "bugs": {
@@ -330,6 +330,11 @@
330
330
  "default": false,
331
331
  "type": "boolean"
332
332
  },
333
+ "strictTaskEntrypointSelection": {
334
+ "description": "Select requested task entrypoints according to whether the task resolves a command in the repository. When any package can run a requested task, packages without a command are not used as entrypoints. Tasks with no command anywhere remain available for graph-only orchestration, and missing tasks reached as dependencies remain in the Task Graph.",
335
+ "default": false,
336
+ "type": "boolean"
337
+ },
333
338
  "watchUsingTaskInputs": {
334
339
  "description": "Use task-level `inputs` globs to determine which tasks to re-run when files change in `turbo watch`. When enabled, only tasks whose declared inputs match the changed files are re-executed, rather than re-running all tasks in changed packages.",
335
340
  "default": false,
package/schemas/schema.ts CHANGED
@@ -292,6 +292,15 @@ export interface FutureFlags {
292
292
  * @defaultValue `false`
293
293
  */
294
294
  filterUsingTasks?: boolean;
295
+ /**
296
+ * Select requested task entrypoints according to whether the task resolves
297
+ * a command in the repository. When any package can run a requested task,
298
+ * packages without a command are skipped as entrypoints. Tasks with no
299
+ * command anywhere remain available for graph-only orchestration.
300
+ *
301
+ * @defaultValue `false`
302
+ */
303
+ strictTaskEntrypointSelection?: boolean;
295
304
  /**
296
305
  * Move global configuration keys under a top-level `global` key.
297
306
  *
@@ -310,6 +310,11 @@
310
310
  "description": "Resolve `--filter` at the task level instead of the package level. Git-range filters (e.g. `--filter=[main]`) will match against task `inputs` globs, and the `...` dependency/dependent syntax will traverse the task graph in addition to the package graph.",
311
311
  "default": false,
312
312
  "type": "boolean"
313
+ },
314
+ "strictTaskEntrypointSelection": {
315
+ "description": "Select requested task entrypoints according to whether the task resolves a command in the repository. When any package can run a requested task, packages without a command are skipped as entrypoints. Tasks with no command anywhere remain available for graph-only orchestration.",
316
+ "default": false,
317
+ "type": "boolean"
313
318
  }
314
319
  }
315
320
  },
@@ -292,6 +292,15 @@ export interface FutureFlags {
292
292
  * @defaultValue `false`
293
293
  */
294
294
  filterUsingTasks?: boolean;
295
+ /**
296
+ * Select requested task entrypoints according to whether the task resolves
297
+ * a command in the repository. When any package can run a requested task,
298
+ * packages without a command are skipped as entrypoints. Tasks with no
299
+ * command anywhere remain available for graph-only orchestration.
300
+ *
301
+ * @defaultValue `false`
302
+ */
303
+ strictTaskEntrypointSelection?: boolean;
295
304
  /**
296
305
  * Move global configuration keys under a top-level `global` key.
297
306
  *