turbo 2.10.6 → 2.10.7

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.
Files changed (2) hide show
  1. package/package.json +7 -7
  2. package/schema.json +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "turbo",
3
- "version": "2.10.6",
3
+ "version": "2.10.7",
4
4
  "description": "Turborepo is a high-performance build system for JavaScript and TypeScript codebases.",
5
5
  "homepage": "https://turborepo.dev",
6
6
  "bugs": "https://github.com/vercel/turborepo/issues",
@@ -15,12 +15,12 @@
15
15
  ],
16
16
  "main": "./bin/turbo",
17
17
  "optionalDependencies": {
18
- "@turbo/darwin-64": "2.10.6",
19
- "@turbo/darwin-arm64": "2.10.6",
20
- "@turbo/linux-64": "2.10.6",
21
- "@turbo/linux-arm64": "2.10.6",
22
- "@turbo/windows-64": "2.10.6",
23
- "@turbo/windows-arm64": "2.10.6"
18
+ "@turbo/darwin-64": "2.10.7",
19
+ "@turbo/darwin-arm64": "2.10.7",
20
+ "@turbo/linux-64": "2.10.7",
21
+ "@turbo/linux-arm64": "2.10.7",
22
+ "@turbo/windows-64": "2.10.7",
23
+ "@turbo/windows-arm64": "2.10.7"
24
24
  },
25
25
  "scripts": {
26
26
  "postversion": "node bump-version.js"
package/schema.json CHANGED
@@ -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,