@turbo/types 2.10.8-canary.4 → 2.10.8

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.8-canary.4",
3
+ "version": "2.10.8",
4
4
  "description": "Turborepo types",
5
5
  "homepage": "https://turborepo.dev",
6
6
  "bugs": {
@@ -301,7 +301,7 @@
301
301
  "type": "boolean"
302
302
  },
303
303
  "experimentalCargoWorkspaces": {
304
- "description": "Treat the crates of a Cargo workspace as Turborepo packages.\n\nWhen enabled, Rust crates are discovered via `cargo metadata` and participate in the package graph: they resolve in `--filter` expressions, propagate `--affected`, and appear in `turbo query`. Filtered builds execute each selected crate. Unfiltered builds prefer entrypoints, falling back to libraries when no entrypoints exist. Entrypoints also expose `run` and `dev`. The `test`, `check`, `clippy`/`lint`, `bench`, and `doc`/`docs` tasks are selectable per crate with `--filter`. An unfiltered run executes one workspace-wide Cargo verification command; filtered runs use the selected crates, or the workspace command when the workspace package is selected directly.\n\nAll crates implicitly register `build` and the verification tasks; entrypoints with one binary also register `run` and `dev`. The workspace package registers the verification tasks. Normal task definitions configure or override these defaults, and package configuration can exclude them with `extends: false`.\n\nTask caching uses Cargo-derived inputs and caches entrypoint build deliverables. Library builds default to uncached. This feature is experimental.",
304
+ "description": "Treat the crates of a Cargo workspace as Turborepo packages.\n\nWhen enabled, Rust crates are discovered via `cargo metadata` and participate in the package graph: they resolve in `--filter` expressions, propagate `--affected`, and appear in `turbo query`. Filtered builds execute each selected crate. Unfiltered builds prefer entrypoints, falling back to libraries when no entrypoints exist. Entrypoints also expose `run` and `dev`. The `test`, `check`, `lint`, and `format` tasks are selectable per crate with `--filter`. An unfiltered run executes one workspace-wide Cargo verification command; filtered runs use the selected crates, or the workspace command when the workspace package is selected directly.\n\nAll crates implicitly register `build` and the verification tasks; entrypoints with one binary also register `run` and `dev`. The workspace package registers the verification tasks. Normal task definitions configure or override these defaults, and package configuration can exclude them with `extends: false`.\n\nTask caching uses Cargo-derived inputs and caches entrypoint build deliverables. Library builds and formatting default to uncached. This feature is experimental.",
305
305
  "default": false,
306
306
  "type": "boolean"
307
307
  },
@@ -310,11 +310,21 @@
310
310
  "default": false,
311
311
  "type": "boolean"
312
312
  },
313
+ "experimentalPythonWorkspaces": {
314
+ "description": "Treat the members of a uv workspace as Turborepo packages.\n\nWhen enabled, Python packages are discovered from the root `pyproject.toml`'s `[tool.uv.workspace]` members and participate in the package graph, resolve in `--filter` expressions, and appear in `turbo query`. uv is the only supported Python package manager. This feature is experimental.",
315
+ "default": false,
316
+ "type": "boolean"
317
+ },
313
318
  "filterUsingTasks": {
314
319
  "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.",
315
320
  "default": false,
316
321
  "type": "boolean"
317
322
  },
323
+ "githubActionsRemoteBaseRefFallback": {
324
+ "description": "When GitHub Actions reports a base branch that is not available as a local ref, fall back to `origin/<branch>`. This supports detached checkouts where only remote-tracking refs are present.",
325
+ "default": false,
326
+ "type": "boolean"
327
+ },
318
328
  "globalConfiguration": {
319
329
  "description": "Move global configuration keys (like `globalDependencies`, `ui`, `envMode`, etc.) under a top-level `global` key for clarity.\n\nWhen enabled, keys are renamed: `globalDependencies` becomes `global.inputs`, `globalEnv` becomes `global.env`, and `globalPassThroughEnv` becomes `global.passThroughEnv`.",
320
330
  "default": false,
@@ -330,11 +340,6 @@
330
340
  "default": false,
331
341
  "type": "boolean"
332
342
  },
333
- "githubActionsRemoteBaseRefFallback": {
334
- "description": "When GitHub Actions reports a base branch that is not available as a local ref, fall back to `origin/<branch>`. This supports detached checkouts where only remote-tracking refs are present.",
335
- "default": false,
336
- "type": "boolean"
337
- },
338
343
  "strictTaskEntrypointSelection": {
339
344
  "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.",
340
345
  "default": false,
@@ -328,8 +328,8 @@ export interface FutureFlags {
328
328
  * expressions, propagate `--affected`, and appear in `turbo query`.
329
329
  * Filtered builds execute each selected crate. Unfiltered builds prefer
330
330
  * entrypoints, falling back to libraries when no entrypoints exist.
331
- * Entrypoints also expose `run` and `dev`. The `test`, `check`, `clippy`/`lint`, `bench`, and
332
- * `doc`/`docs` tasks are selectable per crate with `--filter`. An
331
+ * Entrypoints also expose `run` and `dev`. The `test`, `check`, `lint`, and
332
+ * `format` tasks are selectable per crate with `--filter`. An
333
333
  * unfiltered run executes one workspace-wide Cargo verification command;
334
334
  * filtered runs use the selected crates, or the workspace command when the
335
335
  * workspace package is selected directly.
@@ -341,12 +341,30 @@ export interface FutureFlags {
341
341
  * exclude them with `extends: false`.
342
342
  *
343
343
  * Task caching uses Cargo-derived inputs and caches entrypoint build
344
- * deliverables. Library builds default to uncached. This feature is
345
- * experimental.
344
+ * deliverables. Library builds and formatting default to uncached. This
345
+ * feature is experimental.
346
346
  *
347
347
  * @defaultValue `false`
348
348
  */
349
349
  experimentalCargoWorkspaces?: boolean;
350
+
351
+ /**
352
+ * Treat the members of a uv workspace as Turborepo packages.
353
+ *
354
+ * When enabled, Python packages are discovered from the root
355
+ * `pyproject.toml`'s `[tool.uv.workspace]` members and participate in the
356
+ * package graph: they resolve in `--filter` expressions, propagate
357
+ * `--affected`, and appear in `turbo query`. Buildable packages register `build`
358
+ * (`uv build --package`), and all packages register `format` and `check`;
359
+ * the user-named workspace package registers workspace-wide versions of the
360
+ * quality tasks. External dependencies hash from `uv.lock` per
361
+ * package, and `turbo prune` produces a reachability-pruned `uv.lock`
362
+ * and root `pyproject.toml`. uv is the only supported Python package
363
+ * manager. This feature is experimental.
364
+ *
365
+ * @defaultValue `false`
366
+ */
367
+ experimentalPythonWorkspaces?: boolean;
350
368
  }
351
369
 
352
370
  export interface GlobalConfig {