@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turbo/types",
3
- "version": "2.8.10",
3
+ "version": "2.8.11-canary.10",
4
4
  "description": "Turborepo types",
5
5
  "type": "commonjs",
6
6
  "homepage": "https://turborepo.dev",
@@ -49,7 +49,7 @@
49
49
  ]
50
50
  },
51
51
  "daemon": {
52
- "description": "Turborepo runs a background process to pre-calculate some expensive operations. This standalone process (daemon) is a performance optimization, and not required for proper functioning of `turbo`.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#daemon",
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"
@@ -86,8 +86,9 @@
86
86
  },
87
87
  "daemon": {
88
88
  "type": "boolean",
89
- "description": "Turborepo runs a background process to pre-calculate some expensive operations. This standalone process (daemon) is a performance optimization, and not required for proper functioning of `turbo`.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#daemon",
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",
@@ -156,7 +156,7 @@ export interface RootSchema extends BaseSchema {
156
156
  cacheDir?: RelativeUnixPath;
157
157
 
158
158
  /**
159
- * Turborepo runs a background process to pre-calculate some expensive operations. This standalone process (daemon) is a performance optimization, and not required for proper functioning of `turbo`.
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
  *