turbo 2.10.4-canary.1 → 2.10.4

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 +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "turbo",
3
- "version": "2.10.4-canary.1",
3
+ "version": "2.10.4",
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.4-canary.1",
19
- "@turbo/darwin-arm64": "2.10.4-canary.1",
20
- "@turbo/linux-64": "2.10.4-canary.1",
21
- "@turbo/linux-arm64": "2.10.4-canary.1",
22
- "@turbo/windows-64": "2.10.4-canary.1",
23
- "@turbo/windows-arm64": "2.10.4-canary.1"
18
+ "@turbo/darwin-64": "2.10.4",
19
+ "@turbo/darwin-arm64": "2.10.4",
20
+ "@turbo/linux-64": "2.10.4",
21
+ "@turbo/linux-arm64": "2.10.4",
22
+ "@turbo/windows-64": "2.10.4",
23
+ "@turbo/windows-arm64": "2.10.4"
24
24
  },
25
25
  "scripts": {
26
26
  "postversion": "node bump-version.js"
package/schema.json CHANGED
@@ -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. Experimental: support is landing incrementally, and this flag currently has no effect.",
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`. Experimental: support is landing incrementally — task execution and caching for crates are not wired up yet, so their tasks are no-ops.",
305
305
  "default": false,
306
306
  "type": "boolean"
307
307
  },