turbo 2.9.0 → 2.9.1
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 +7 -7
- package/schema.json +44 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "turbo",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.1",
|
|
4
4
|
"description": "Turborepo is a high-performance build system for JavaScript and TypeScript codebases.",
|
|
5
5
|
"homepage": "https://turborepo.dev",
|
|
6
6
|
"bugs": "https://github.com/vercel/turborepo/issues",
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
],
|
|
16
16
|
"main": "./bin/turbo",
|
|
17
17
|
"optionalDependencies": {
|
|
18
|
-
"@turbo/darwin-64": "2.9.
|
|
19
|
-
"@turbo/darwin-arm64": "2.9.
|
|
20
|
-
"@turbo/linux-64": "2.9.
|
|
21
|
-
"@turbo/linux-arm64": "2.9.
|
|
22
|
-
"@turbo/windows-64": "2.9.
|
|
23
|
-
"@turbo/windows-arm64": "2.9.
|
|
18
|
+
"@turbo/darwin-64": "2.9.1",
|
|
19
|
+
"@turbo/darwin-arm64": "2.9.1",
|
|
20
|
+
"@turbo/linux-64": "2.9.1",
|
|
21
|
+
"@turbo/linux-arm64": "2.9.1",
|
|
22
|
+
"@turbo/windows-64": "2.9.1",
|
|
23
|
+
"@turbo/windows-arm64": "2.9.1"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"postversion": "node bump-version.js"
|
package/schema.json
CHANGED
|
@@ -37,6 +37,28 @@
|
|
|
37
37
|
}
|
|
38
38
|
]
|
|
39
39
|
},
|
|
40
|
+
"cacheMaxAge": {
|
|
41
|
+
"description": "Maximum age of local cache entries before automatic eviction.\n\nAccepts a human-readable duration string (e.g. `\"7d\"`, `\"24h\"`, `\"2w\"`). Set to `\"0\"` to disable eviction (the default). Entries older than this value are removed at the start of each run.",
|
|
42
|
+
"anyOf": [
|
|
43
|
+
{
|
|
44
|
+
"$ref": "#/definitions/String"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"type": "null"
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
"cacheMaxSize": {
|
|
52
|
+
"description": "Maximum total size of the local filesystem cache.\n\nAccepts a human-readable size string (e.g. `\"10GB\"`, `\"500MB\"`). When exceeded, the oldest entries are evicted until the cache is under the limit. Set to `\"0\"` to disable (the default).",
|
|
53
|
+
"anyOf": [
|
|
54
|
+
{
|
|
55
|
+
"$ref": "#/definitions/String"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"type": "null"
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
|
+
},
|
|
40
62
|
"concurrency": {
|
|
41
63
|
"description": "Set/limit the maximum concurrency for task execution.\n\nMust be an integer greater than or equal to `1` or a percentage value like `50%`. Use `1` to force serial execution (one task at a time). Use `100%` to use all available logical processors.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#concurrency",
|
|
42
64
|
"anyOf": [
|
|
@@ -325,6 +347,28 @@
|
|
|
325
347
|
}
|
|
326
348
|
]
|
|
327
349
|
},
|
|
350
|
+
"cacheMaxAge": {
|
|
351
|
+
"description": "Maximum age of local cache entries before automatic eviction.\n\nAccepts a human-readable duration string (e.g. `\"7d\"`, `\"24h\"`, `\"2w\"`). Set to `\"0\"` to disable eviction (the default). Entries older than this value are removed at the start of each run.",
|
|
352
|
+
"anyOf": [
|
|
353
|
+
{
|
|
354
|
+
"$ref": "#/definitions/String"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"type": "null"
|
|
358
|
+
}
|
|
359
|
+
]
|
|
360
|
+
},
|
|
361
|
+
"cacheMaxSize": {
|
|
362
|
+
"description": "Maximum total size of the local filesystem cache.\n\nAccepts a human-readable size string (e.g. `\"10GB\"`, `\"500MB\"`). When exceeded, the oldest entries are evicted until the cache is under the limit. Set to `\"0\"` to disable (the default).",
|
|
363
|
+
"anyOf": [
|
|
364
|
+
{
|
|
365
|
+
"$ref": "#/definitions/String"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"type": "null"
|
|
369
|
+
}
|
|
370
|
+
]
|
|
371
|
+
},
|
|
328
372
|
"concurrency": {
|
|
329
373
|
"description": "Set/limit the maximum concurrency for task execution.",
|
|
330
374
|
"anyOf": [
|