@turbo/types 2.10.12 → 2.10.13-canary.2
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/schemas/schema.json +5 -0
- package/src/types/config-v2.ts +12 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turbo/types",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.13-canary.2",
|
|
4
4
|
"description": "Turborepo types",
|
|
5
5
|
"homepage": "https://turborepo.dev",
|
|
6
6
|
"bugs": {
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@arethetypeswrong/cli": "0.18.2",
|
|
27
|
+
"@turbo/tsconfig": "0.0.0",
|
|
27
28
|
"@types/node": "20.11.30",
|
|
28
29
|
"ts-json-schema-generator": "2.5.0",
|
|
29
30
|
"tsx": "4.21.0",
|
|
30
31
|
"typescript": "npm:@typescript/typescript6@^6.0.2",
|
|
31
|
-
"typescript-7": "npm:typescript@7.0.2"
|
|
32
|
-
"@turbo/tsconfig": "0.0.0"
|
|
32
|
+
"typescript-7": "npm:typescript@7.0.2"
|
|
33
33
|
}
|
|
34
34
|
}
|
package/schemas/schema.json
CHANGED
|
@@ -315,6 +315,11 @@
|
|
|
315
315
|
"default": false,
|
|
316
316
|
"type": "boolean"
|
|
317
317
|
},
|
|
318
|
+
"experimentalGoWorkspaces": {
|
|
319
|
+
"description": "Treat the modules listed in a `go.work` file as Turborepo packages.\n\nWhen enabled, Go modules are discovered from the repository-root `go.work` via the Go toolchain and participate in the package graph: they resolve in `--filter` expressions, propagate `--affected`, and appear in `turbo query`. This feature is experimental.",
|
|
320
|
+
"default": false,
|
|
321
|
+
"type": "boolean"
|
|
322
|
+
},
|
|
318
323
|
"filterUsingTasks": {
|
|
319
324
|
"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.",
|
|
320
325
|
"default": false,
|
package/src/types/config-v2.ts
CHANGED
|
@@ -366,6 +366,18 @@ export interface FutureFlags {
|
|
|
366
366
|
* @defaultValue `false`
|
|
367
367
|
*/
|
|
368
368
|
experimentalPythonWorkspaces?: boolean;
|
|
369
|
+
|
|
370
|
+
/**
|
|
371
|
+
* Treat the modules listed in a `go.work` file as Turborepo packages.
|
|
372
|
+
*
|
|
373
|
+
* When enabled, Go modules are discovered from the repository-root
|
|
374
|
+
* `go.work` via the Go toolchain and participate in the package graph:
|
|
375
|
+
* they resolve in `--filter` expressions, propagate `--affected`, and
|
|
376
|
+
* appear in `turbo query`. This feature is experimental.
|
|
377
|
+
*
|
|
378
|
+
* @defaultValue `false`
|
|
379
|
+
*/
|
|
380
|
+
experimentalGoWorkspaces?: boolean;
|
|
369
381
|
}
|
|
370
382
|
|
|
371
383
|
export interface GlobalConfig {
|