turbo 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.
Files changed (2) hide show
  1. package/package.json +7 -7
  2. package/schema.json +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "turbo",
3
- "version": "2.5.1",
3
+ "version": "2.5.2-canary.0",
4
4
  "description": "Turborepo is a high-performance build system for JavaScript and TypeScript codebases.",
5
5
  "repository": "https://github.com/vercel/turborepo",
6
6
  "bugs": "https://github.com/vercel/turborepo/issues",
@@ -15,12 +15,12 @@
15
15
  "schema.json"
16
16
  ],
17
17
  "optionalDependencies": {
18
- "turbo-darwin-64": "2.5.1",
19
- "turbo-darwin-arm64": "2.5.1",
20
- "turbo-linux-64": "2.5.1",
21
- "turbo-linux-arm64": "2.5.1",
22
- "turbo-windows-64": "2.5.1",
23
- "turbo-windows-arm64": "2.5.1"
18
+ "turbo-darwin-64": "2.5.2-canary.0",
19
+ "turbo-darwin-arm64": "2.5.2-canary.0",
20
+ "turbo-linux-64": "2.5.2-canary.0",
21
+ "turbo-linux-arm64": "2.5.2-canary.0",
22
+ "turbo-windows-64": "2.5.2-canary.0",
23
+ "turbo-windows-arm64": "2.5.2-canary.0"
24
24
  },
25
25
  "scripts": {
26
26
  "postversion": "node bump-version.js"
package/schema.json CHANGED
@@ -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.",