@turbo/types 2.10.10-canary.2 → 2.10.10
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 +3 -3
- package/src/types/config-v2.ts +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turbo/types",
|
|
3
|
-
"version": "2.10.10
|
|
3
|
+
"version": "2.10.10",
|
|
4
4
|
"description": "Turborepo types",
|
|
5
5
|
"homepage": "https://turborepo.dev",
|
|
6
6
|
"bugs": {
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"@types/node": "20.11.30",
|
|
28
28
|
"ts-json-schema-generator": "2.5.0",
|
|
29
29
|
"tsx": "4.21.0",
|
|
30
|
-
"typescript": "npm:@typescript/typescript6@^6.0.
|
|
31
|
-
"typescript-7": "npm:typescript@7.0.
|
|
30
|
+
"typescript": "npm:@typescript/typescript6@^6.0.2",
|
|
31
|
+
"typescript-7": "npm:typescript@7.0.2",
|
|
32
32
|
"@turbo/tsconfig": "0.0.0"
|
|
33
33
|
}
|
|
34
34
|
}
|
package/src/types/config-v2.ts
CHANGED
|
@@ -355,9 +355,10 @@ export interface FutureFlags {
|
|
|
355
355
|
* `pyproject.toml`'s `[tool.uv.workspace]` members and participate in the
|
|
356
356
|
* package graph: they resolve in `--filter` expressions, propagate
|
|
357
357
|
* `--affected`, and appear in `turbo query`. Buildable packages register `build`
|
|
358
|
-
* (`uv build --package`), and all packages register `format` and `check
|
|
359
|
-
*
|
|
360
|
-
*
|
|
358
|
+
* (`uv build --package`), and all packages register `format` and `check`.
|
|
359
|
+
* Direct pytest declarations register ownership-scoped `test` tasks; the
|
|
360
|
+
* user-named workspace package registers workspace-wide quality tasks.
|
|
361
|
+
* External dependencies hash from `uv.lock` per
|
|
361
362
|
* package, and `turbo prune` produces a reachability-pruned `uv.lock`
|
|
362
363
|
* and root `pyproject.toml`. uv is the only supported Python package
|
|
363
364
|
* manager. This feature is experimental.
|