turbo 2.10.3 → 2.10.4-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 +7 -7
- package/schema.json +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "turbo",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.4-canary.1",
|
|
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.
|
|
19
|
-
"@turbo/darwin-arm64": "2.10.
|
|
20
|
-
"@turbo/linux-64": "2.10.
|
|
21
|
-
"@turbo/linux-arm64": "2.10.
|
|
22
|
-
"@turbo/windows-64": "2.10.
|
|
23
|
-
"@turbo/windows-arm64": "2.10.
|
|
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"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"postversion": "node bump-version.js"
|
package/schema.json
CHANGED
|
@@ -300,6 +300,11 @@
|
|
|
300
300
|
"default": false,
|
|
301
301
|
"type": "boolean"
|
|
302
302
|
},
|
|
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.",
|
|
305
|
+
"default": false,
|
|
306
|
+
"type": "boolean"
|
|
307
|
+
},
|
|
303
308
|
"experimentalObservability": {
|
|
304
309
|
"description": "Enable experimental OpenTelemetry exporter support.\n\nWhen enabled, Turborepo will honor the `experimentalObservability` configuration block (if present) to send run summaries to an observability backend.",
|
|
305
310
|
"default": false,
|