@turbo/types 2.5.1 → 2.5.2-canary.0

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.5.1",
3
+ "version": "2.5.2-canary.0",
4
4
  "description": "Turborepo types",
5
5
  "homepage": "https://turborepo.com",
6
6
  "license": "MIT",
@@ -69,6 +69,11 @@
69
69
  "description": "Enable use of the UI for `turbo`.\n\nDocumentation: https://turborepo.com/docs/reference/configuration#ui",
70
70
  "default": "stream"
71
71
  },
72
+ "concurrency": {
73
+ "type": "string",
74
+ "description": "Set/limit the maximum concurrency for task execution. Must be an integer greater than or equal to `1` or a percentage value like `50%`.\n\n - Use `1` to force serial execution (one task at a time). - Use `100%` to use all available logical processors.\n\nDocumentation: https://turborepo.com/docs/reference/configuration#concurrency",
75
+ "default": "10"
76
+ },
72
77
  "dangerouslyDisablePackageManagerCheck": {
73
78
  "type": "boolean",
74
79
  "description": "Disable check for `packageManager` in root `package.json`\n\nThis is highly discouraged as it leaves `turbo` dependent on system configuration to infer the correct package manager.\n\nSome turbo features are disabled if this is set to true.",
@@ -69,6 +69,11 @@
69
69
  "description": "Enable use of the UI for `turbo`.\n\nDocumentation: https://turborepo.com/docs/reference/configuration#ui",
70
70
  "default": "stream"
71
71
  },
72
+ "concurrency": {
73
+ "type": "string",
74
+ "description": "Set/limit the maximum concurrency for task execution. Must be an integer greater than or equal to `1` or a percentage value like `50%`.\n\n - Use `1` to force serial execution (one task at a time). - Use `100%` to use all available logical processors.\n\nDocumentation: https://turborepo.com/docs/reference/configuration#concurrency",
75
+ "default": "10"
76
+ },
72
77
  "dangerouslyDisablePackageManagerCheck": {
73
78
  "type": "boolean",
74
79
  "description": "Disable check for `packageManager` in root `package.json`\n\nThis is highly discouraged as it leaves `turbo` dependent on system configuration to infer the correct package manager.\n\nSome turbo features are disabled if this is set to true.",
@@ -123,6 +123,18 @@ export interface RootSchema extends BaseSchema {
123
123
  */
124
124
  ui?: UI;
125
125
 
126
+ /**
127
+ * Set/limit the maximum concurrency for task execution. Must be an integer greater than or equal to `1` or a percentage value like `50%`.
128
+ *
129
+ * - Use `1` to force serial execution (one task at a time).
130
+ * - Use `100%` to use all available logical processors.
131
+ *
132
+ * Documentation: https://turborepo.com/docs/reference/configuration#concurrency
133
+ *
134
+ * @defaultValue `"10"`
135
+ */
136
+ concurrency?: string;
137
+
126
138
  /**
127
139
  * Disable check for `packageManager` in root `package.json`
128
140
  *