@turbo/types 2.8.10 → 2.8.11-canary.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 +1 -1
- package/schemas/schema.json +1 -1
- package/schemas/schema.v2.json +3 -2
- package/src/types/config-v2.ts +1 -1
package/package.json
CHANGED
package/schemas/schema.json
CHANGED
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
]
|
|
50
50
|
},
|
|
51
51
|
"daemon": {
|
|
52
|
-
"description": "
|
|
52
|
+
"description": "Deprecated: The daemon is no longer used for `turbo run` and this option will be removed in version 3.0.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#daemon",
|
|
53
53
|
"anyOf": [
|
|
54
54
|
{
|
|
55
55
|
"$ref": "#/definitions/Boolean"
|
package/schemas/schema.v2.json
CHANGED
|
@@ -86,8 +86,9 @@
|
|
|
86
86
|
},
|
|
87
87
|
"daemon": {
|
|
88
88
|
"type": "boolean",
|
|
89
|
-
"description": "
|
|
90
|
-
"default": false
|
|
89
|
+
"description": "Deprecated: The daemon is no longer used for `turbo run` and this option will be removed in version 3.0.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#daemon",
|
|
90
|
+
"default": false,
|
|
91
|
+
"deprecated": true
|
|
91
92
|
},
|
|
92
93
|
"envMode": {
|
|
93
94
|
"$ref": "#/definitions/EnvMode",
|
package/src/types/config-v2.ts
CHANGED
|
@@ -156,7 +156,7 @@ export interface RootSchema extends BaseSchema {
|
|
|
156
156
|
cacheDir?: RelativeUnixPath;
|
|
157
157
|
|
|
158
158
|
/**
|
|
159
|
-
*
|
|
159
|
+
* Deprecated: The daemon is no longer used for `turbo run` and this option will be removed in version 3.0.
|
|
160
160
|
*
|
|
161
161
|
* Documentation: https://turborepo.dev/docs/reference/configuration#daemon
|
|
162
162
|
*
|