turbo 2.7.5-canary.4 → 2.7.5-canary.6
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/README.md +3 -3
- package/package.json +8 -8
- package/schema.json +30 -30
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<a href="https://turborepo.
|
|
2
|
+
<a href="https://turborepo.dev">
|
|
3
3
|
<picture>
|
|
4
4
|
<source media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/4060187/196936123-f6e1db90-784d-4174-b774-92502b718836.png">
|
|
5
5
|
<img src="https://user-images.githubusercontent.com/4060187/196936104-5797972c-ab10-4834-bd61-0d1e5f442c9c.png" height="128">
|
|
@@ -19,7 +19,7 @@ Turborepo is a high-performance build system for JavaScript and TypeScript codeb
|
|
|
19
19
|
|
|
20
20
|
## Getting Started
|
|
21
21
|
|
|
22
|
-
Visit https://turborepo.
|
|
22
|
+
Visit https://turborepo.dev to get started with Turborepo.
|
|
23
23
|
|
|
24
24
|
## Contributing
|
|
25
25
|
|
|
@@ -35,7 +35,7 @@ Our [Code of Conduct](https://github.com/vercel/turborepo/blob/main/CODE_OF_COND
|
|
|
35
35
|
|
|
36
36
|
## Who is using Turborepo?
|
|
37
37
|
|
|
38
|
-
Turborepo is used by the world's leading companies. Check out the [Turborepo Showcase](https://turborepo.
|
|
38
|
+
Turborepo is used by the world's leading companies. Check out the [Turborepo Showcase](https://turborepo.dev/showcase) to learn more.
|
|
39
39
|
|
|
40
40
|
## Updates
|
|
41
41
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "turbo",
|
|
3
|
-
"version": "2.7.5-canary.
|
|
3
|
+
"version": "2.7.5-canary.6",
|
|
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",
|
|
7
|
-
"homepage": "https://turborepo.
|
|
7
|
+
"homepage": "https://turborepo.dev",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"main": "./bin/turbo",
|
|
10
10
|
"bin": {
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
"schema.json"
|
|
16
16
|
],
|
|
17
17
|
"optionalDependencies": {
|
|
18
|
-
"turbo-darwin-64": "2.7.5-canary.
|
|
19
|
-
"turbo-darwin-arm64": "2.7.5-canary.
|
|
20
|
-
"turbo-linux-64": "2.7.5-canary.
|
|
21
|
-
"turbo-linux-arm64": "2.7.5-canary.
|
|
22
|
-
"turbo-windows-64": "2.7.5-canary.
|
|
23
|
-
"turbo-windows-arm64": "2.7.5-canary.
|
|
18
|
+
"turbo-darwin-64": "2.7.5-canary.6",
|
|
19
|
+
"turbo-darwin-arm64": "2.7.5-canary.6",
|
|
20
|
+
"turbo-linux-64": "2.7.5-canary.6",
|
|
21
|
+
"turbo-linux-arm64": "2.7.5-canary.6",
|
|
22
|
+
"turbo-windows-64": "2.7.5-canary.6",
|
|
23
|
+
"turbo-windows-arm64": "2.7.5-canary.6"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"postversion": "node bump-version.js"
|
package/schema.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
3
|
"title": "RawTurboJson",
|
|
4
|
-
"description": "Configuration schema for turbo.json.\n\nAn object representing the task dependency graph of your project. turbo interprets these conventions to schedule, execute, and cache the outputs of tasks in your project.\n\nDocumentation: https://turborepo.
|
|
4
|
+
"description": "Configuration schema for turbo.json.\n\nAn object representing the task dependency graph of your project. turbo interprets these conventions to schedule, execute, and cache the outputs of tasks in your project.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"$schema": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
]
|
|
28
28
|
},
|
|
29
29
|
"cacheDir": {
|
|
30
|
-
"description": "Specify the filesystem cache directory.\n\nDocumentation: https://turborepo.
|
|
30
|
+
"description": "Specify the filesystem cache directory.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#cachedir",
|
|
31
31
|
"anyOf": [
|
|
32
32
|
{
|
|
33
33
|
"$ref": "#/definitions/String"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
]
|
|
39
39
|
},
|
|
40
40
|
"concurrency": {
|
|
41
|
-
"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.
|
|
41
|
+
"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
42
|
"anyOf": [
|
|
43
43
|
{
|
|
44
44
|
"$ref": "#/definitions/String"
|
|
@@ -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.
|
|
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",
|
|
53
53
|
"anyOf": [
|
|
54
54
|
{
|
|
55
55
|
"$ref": "#/definitions/Boolean"
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
]
|
|
72
72
|
},
|
|
73
73
|
"envMode": {
|
|
74
|
-
"description": "Turborepo's Environment Modes allow you to control which environment variables are available to a task at runtime.\n\nDocumentation: https://turborepo.
|
|
74
|
+
"description": "Turborepo's Environment Modes allow you to control which environment variables are available to a task at runtime.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#envmode",
|
|
75
75
|
"anyOf": [
|
|
76
76
|
{
|
|
77
77
|
"$ref": "#/definitions/EnvMode"
|
|
@@ -104,28 +104,28 @@
|
|
|
104
104
|
]
|
|
105
105
|
},
|
|
106
106
|
"globalDependencies": {
|
|
107
|
-
"description": "A list of globs to include in the set of implicit global hash dependencies.\n\nThe contents of these files will be included in the global hashing algorithm and affect the hashes of all tasks.\n\nThis is useful for busting the cache based on: - `.env` files (not in Git) - Any root level file that impacts package tasks that are not represented in the traditional dependency graph (e.g. a root `tsconfig.json`, `jest.config.ts`, `.eslintrc`, etc.)\n\nDocumentation: https://turborepo.
|
|
107
|
+
"description": "A list of globs to include in the set of implicit global hash dependencies.\n\nThe contents of these files will be included in the global hashing algorithm and affect the hashes of all tasks.\n\nThis is useful for busting the cache based on: - `.env` files (not in Git) - Any root level file that impacts package tasks that are not represented in the traditional dependency graph (e.g. a root `tsconfig.json`, `jest.config.ts`, `.eslintrc`, etc.)\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#globaldependencies",
|
|
108
108
|
"type": ["array", "null"],
|
|
109
109
|
"items": {
|
|
110
110
|
"$ref": "#/definitions/String"
|
|
111
111
|
}
|
|
112
112
|
},
|
|
113
113
|
"globalEnv": {
|
|
114
|
-
"description": "A list of environment variables for implicit global hash dependencies.\n\nThe variables included in this list will affect all task hashes.\n\nDocumentation: https://turborepo.
|
|
114
|
+
"description": "A list of environment variables for implicit global hash dependencies.\n\nThe variables included in this list will affect all task hashes.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#globalenv",
|
|
115
115
|
"type": ["array", "null"],
|
|
116
116
|
"items": {
|
|
117
117
|
"$ref": "#/definitions/String"
|
|
118
118
|
}
|
|
119
119
|
},
|
|
120
120
|
"globalPassThroughEnv": {
|
|
121
|
-
"description": "An allowlist of environment variables that should be made to all tasks, but should not contribute to the task's cache key, e.g. `AWS_SECRET_KEY`.\n\nDocumentation: https://turborepo.
|
|
121
|
+
"description": "An allowlist of environment variables that should be made to all tasks, but should not contribute to the task's cache key, e.g. `AWS_SECRET_KEY`.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#globalpassthroughenv",
|
|
122
122
|
"type": ["array", "null"],
|
|
123
123
|
"items": {
|
|
124
124
|
"$ref": "#/definitions/String"
|
|
125
125
|
}
|
|
126
126
|
},
|
|
127
127
|
"noUpdateNotifier": {
|
|
128
|
-
"description": "When set to `true`, disables the update notification that appears when a new version of `turbo` is available.\n\nDocumentation: https://turborepo.
|
|
128
|
+
"description": "When set to `true`, disables the update notification that appears when a new version of `turbo` is available.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#noupdatenotifier",
|
|
129
129
|
"anyOf": [
|
|
130
130
|
{
|
|
131
131
|
"$ref": "#/definitions/Boolean"
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
]
|
|
137
137
|
},
|
|
138
138
|
"remoteCache": {
|
|
139
|
-
"description": "Configuration options when interfacing with the remote cache.\n\nDocumentation: https://turborepo.
|
|
139
|
+
"description": "Configuration options when interfacing with the remote cache.\n\nDocumentation: https://turborepo.dev/docs/core-concepts/remote-caching",
|
|
140
140
|
"anyOf": [
|
|
141
141
|
{
|
|
142
142
|
"$ref": "#/definitions/RemoteCache"
|
|
@@ -158,14 +158,14 @@
|
|
|
158
158
|
]
|
|
159
159
|
},
|
|
160
160
|
"tasks": {
|
|
161
|
-
"description": "An object representing the task dependency graph of your project.\n\nturbo interprets these conventions to schedule, execute, and cache the outputs of tasks in your project.\n\nDocumentation: https://turborepo.
|
|
161
|
+
"description": "An object representing the task dependency graph of your project.\n\nturbo interprets these conventions to schedule, execute, and cache the outputs of tasks in your project.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#tasks",
|
|
162
162
|
"type": ["object", "null"],
|
|
163
163
|
"additionalProperties": {
|
|
164
164
|
"$ref": "#/definitions/Pipeline"
|
|
165
165
|
}
|
|
166
166
|
},
|
|
167
167
|
"ui": {
|
|
168
|
-
"description": "Enable use of the UI for `turbo`.\n\nDocumentation: https://turborepo.
|
|
168
|
+
"description": "Enable use of the UI for `turbo`.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#ui",
|
|
169
169
|
"anyOf": [
|
|
170
170
|
{
|
|
171
171
|
"$ref": "#/definitions/UI"
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
}
|
|
238
238
|
},
|
|
239
239
|
"EnvMode": {
|
|
240
|
-
"description": "Turborepo's Environment Modes allow you to control which environment variables are available to a task at runtime.\n\n- `strict`: Filter environment variables to only those that are specified in the `env` and `globalEnv` keys in `turbo.json`. - `loose`: Allow all environment variables for the process to be available.\n\nDocumentation: https://turborepo.
|
|
240
|
+
"description": "Turborepo's Environment Modes allow you to control which environment variables are available to a task at runtime.\n\n- `strict`: Filter environment variables to only those that are specified in the `env` and `globalEnv` keys in `turbo.json`. - `loose`: Allow all environment variables for the process to be available.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#envmode",
|
|
241
241
|
"oneOf": [
|
|
242
242
|
{
|
|
243
243
|
"description": "Allow all environment variables for the process to be available.",
|
|
@@ -262,7 +262,7 @@
|
|
|
262
262
|
}
|
|
263
263
|
},
|
|
264
264
|
"OutputLogs": {
|
|
265
|
-
"description": "Output mode for the task.\n\n- `full`: Displays all output - `hash-only`: Show only the hashes of the tasks - `new-only`: Only show output from cache misses - `errors-only`: Only show output from task failures - `none`: Hides all task output\n\nDocumentation: https://turborepo.
|
|
265
|
+
"description": "Output mode for the task.\n\n- `full`: Displays all output - `hash-only`: Show only the hashes of the tasks - `new-only`: Only show output from cache misses - `errors-only`: Only show output from task failures - `none`: Hides all task output\n\nDocumentation: https://turborepo.dev/docs/reference/run#--output-logs-option",
|
|
266
266
|
"oneOf": [
|
|
267
267
|
{
|
|
268
268
|
"description": "Displays all output.",
|
|
@@ -324,7 +324,7 @@
|
|
|
324
324
|
"type": "object",
|
|
325
325
|
"properties": {
|
|
326
326
|
"cache": {
|
|
327
|
-
"description": "Whether or not to cache the outputs of the task.\n\nSetting cache to false is useful for long-running \"watch\" or development mode tasks.\n\nDocumentation: https://turborepo.
|
|
327
|
+
"description": "Whether or not to cache the outputs of the task.\n\nSetting cache to false is useful for long-running \"watch\" or development mode tasks.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#cache",
|
|
328
328
|
"anyOf": [
|
|
329
329
|
{
|
|
330
330
|
"$ref": "#/definitions/Boolean"
|
|
@@ -335,7 +335,7 @@
|
|
|
335
335
|
]
|
|
336
336
|
},
|
|
337
337
|
"dependsOn": {
|
|
338
|
-
"description": "The list of tasks that this task depends on.\n\nPrefixing an item in `dependsOn` with a `^` prefix tells turbo that this task depends on the package's topological dependencies completing the task first. Items without a `^` prefix express the relationships between tasks within the same package.\n\nDocumentation: https://turborepo.
|
|
338
|
+
"description": "The list of tasks that this task depends on.\n\nPrefixing an item in `dependsOn` with a `^` prefix tells turbo that this task depends on the package's topological dependencies completing the task first. Items without a `^` prefix express the relationships between tasks within the same package.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#dependson",
|
|
339
339
|
"anyOf": [
|
|
340
340
|
{
|
|
341
341
|
"$ref": "#/definitions/Array_of_String"
|
|
@@ -357,21 +357,21 @@
|
|
|
357
357
|
]
|
|
358
358
|
},
|
|
359
359
|
"env": {
|
|
360
|
-
"description": "A list of environment variables that this task depends on.\n\nNote: If you are migrating from a turbo version 1.5 or below, you may be used to prefixing your variables with a `$`. You no longer need to use the `$` prefix.\n\nDocumentation: https://turborepo.
|
|
360
|
+
"description": "A list of environment variables that this task depends on.\n\nNote: If you are migrating from a turbo version 1.5 or below, you may be used to prefixing your variables with a `$`. You no longer need to use the `$` prefix.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#env",
|
|
361
361
|
"type": ["array", "null"],
|
|
362
362
|
"items": {
|
|
363
363
|
"$ref": "#/definitions/String"
|
|
364
364
|
}
|
|
365
365
|
},
|
|
366
366
|
"inputs": {
|
|
367
|
-
"description": "The set of glob patterns to consider as inputs to this task.\n\nChanges to files covered by these globs will cause a cache miss and the task will be rerun. If a file has been changed that is **not** included in the set of globs, it will not cause a cache miss. If omitted or empty, all files in the package are considered as inputs.\n\nDocumentation: https://turborepo.
|
|
367
|
+
"description": "The set of glob patterns to consider as inputs to this task.\n\nChanges to files covered by these globs will cause a cache miss and the task will be rerun. If a file has been changed that is **not** included in the set of globs, it will not cause a cache miss. If omitted or empty, all files in the package are considered as inputs.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#inputs",
|
|
368
368
|
"type": ["array", "null"],
|
|
369
369
|
"items": {
|
|
370
370
|
"$ref": "#/definitions/String"
|
|
371
371
|
}
|
|
372
372
|
},
|
|
373
373
|
"interactive": {
|
|
374
|
-
"description": "Mark a task as interactive allowing it to receive input from stdin.\n\nInteractive tasks must be marked with `\"cache\": false` as the input they receive from stdin can change the outcome of the task.\n\nDocumentation: https://turborepo.
|
|
374
|
+
"description": "Mark a task as interactive allowing it to receive input from stdin.\n\nInteractive tasks must be marked with `\"cache\": false` as the input they receive from stdin can change the outcome of the task.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#interactive",
|
|
375
375
|
"anyOf": [
|
|
376
376
|
{
|
|
377
377
|
"$ref": "#/definitions/Boolean"
|
|
@@ -382,7 +382,7 @@
|
|
|
382
382
|
]
|
|
383
383
|
},
|
|
384
384
|
"interruptible": {
|
|
385
|
-
"description": "Label a persistent task as interruptible to allow it to be restarted by `turbo watch`.\n\n`turbo watch` watches for changes to your packages and automatically restarts tasks that are affected. However, if a task is persistent, it will not be restarted by default. To enable restarting persistent tasks, set `interruptible` to `true`.\n\nDocumentation: https://turborepo.
|
|
385
|
+
"description": "Label a persistent task as interruptible to allow it to be restarted by `turbo watch`.\n\n`turbo watch` watches for changes to your packages and automatically restarts tasks that are affected. However, if a task is persistent, it will not be restarted by default. To enable restarting persistent tasks, set `interruptible` to `true`.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#interruptible",
|
|
386
386
|
"anyOf": [
|
|
387
387
|
{
|
|
388
388
|
"$ref": "#/definitions/Boolean"
|
|
@@ -393,7 +393,7 @@
|
|
|
393
393
|
]
|
|
394
394
|
},
|
|
395
395
|
"outputLogs": {
|
|
396
|
-
"description": "Output mode for the task.\n\nDocumentation: https://turborepo.
|
|
396
|
+
"description": "Output mode for the task.\n\nDocumentation: https://turborepo.dev/docs/reference/run#--output-logs-option",
|
|
397
397
|
"anyOf": [
|
|
398
398
|
{
|
|
399
399
|
"$ref": "#/definitions/OutputLogs"
|
|
@@ -404,21 +404,21 @@
|
|
|
404
404
|
]
|
|
405
405
|
},
|
|
406
406
|
"outputs": {
|
|
407
|
-
"description": "The set of glob patterns indicating a task's cacheable filesystem outputs.\n\nTurborepo captures task logs for all tasks. This enables us to cache tasks whose runs produce no artifacts other than logs (such as linters). Logs are always treated as a cacheable artifact and never need to be specified.\n\nDocumentation: https://turborepo.
|
|
407
|
+
"description": "The set of glob patterns indicating a task's cacheable filesystem outputs.\n\nTurborepo captures task logs for all tasks. This enables us to cache tasks whose runs produce no artifacts other than logs (such as linters). Logs are always treated as a cacheable artifact and never need to be specified.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#outputs",
|
|
408
408
|
"type": ["array", "null"],
|
|
409
409
|
"items": {
|
|
410
410
|
"$ref": "#/definitions/String"
|
|
411
411
|
}
|
|
412
412
|
},
|
|
413
413
|
"passThroughEnv": {
|
|
414
|
-
"description": "An allowlist of environment variables that should be made available in this task's environment, but should not contribute to the task's cache key, e.g. `AWS_SECRET_KEY`.\n\nDocumentation: https://turborepo.
|
|
414
|
+
"description": "An allowlist of environment variables that should be made available in this task's environment, but should not contribute to the task's cache key, e.g. `AWS_SECRET_KEY`.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#passthroughenv",
|
|
415
415
|
"type": ["array", "null"],
|
|
416
416
|
"items": {
|
|
417
417
|
"$ref": "#/definitions/String"
|
|
418
418
|
}
|
|
419
419
|
},
|
|
420
420
|
"persistent": {
|
|
421
|
-
"description": "Indicates whether the task exits or not.\n\nSetting `persistent` to `true` tells turbo that this is a long-running task and will ensure that other tasks cannot depend on it.\n\nDocumentation: https://turborepo.
|
|
421
|
+
"description": "Indicates whether the task exits or not.\n\nSetting `persistent` to `true` tells turbo that this is a long-running task and will ensure that other tasks cannot depend on it.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#persistent",
|
|
422
422
|
"anyOf": [
|
|
423
423
|
{
|
|
424
424
|
"$ref": "#/definitions/Boolean"
|
|
@@ -429,7 +429,7 @@
|
|
|
429
429
|
]
|
|
430
430
|
},
|
|
431
431
|
"with": {
|
|
432
|
-
"description": "A list of tasks that will run alongside this task.\n\nTasks in this list will not be run until completion before this task starts execution.\n\nDocumentation: https://turborepo.
|
|
432
|
+
"description": "A list of tasks that will run alongside this task.\n\nTasks in this list will not be run until completion before this task starts execution.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#with",
|
|
433
433
|
"type": ["array", "null"],
|
|
434
434
|
"items": {
|
|
435
435
|
"$ref": "#/definitions/String"
|
|
@@ -438,11 +438,11 @@
|
|
|
438
438
|
}
|
|
439
439
|
},
|
|
440
440
|
"RemoteCache": {
|
|
441
|
-
"description": "Configuration options that control how turbo interfaces with the remote cache.\n\nDocumentation: https://turborepo.
|
|
441
|
+
"description": "Configuration options that control how turbo interfaces with the remote cache.\n\nDocumentation: https://turborepo.dev/docs/core-concepts/remote-caching",
|
|
442
442
|
"type": "object",
|
|
443
443
|
"properties": {
|
|
444
444
|
"apiUrl": {
|
|
445
|
-
"description": "Set endpoint for API calls to the remote cache.\n\nDocumentation: https://turborepo.
|
|
445
|
+
"description": "Set endpoint for API calls to the remote cache.\n\nDocumentation: https://turborepo.dev/docs/core-concepts/remote-caching#self-hosting",
|
|
446
446
|
"anyOf": [
|
|
447
447
|
{
|
|
448
448
|
"$ref": "#/definitions/String"
|
|
@@ -453,7 +453,7 @@
|
|
|
453
453
|
]
|
|
454
454
|
},
|
|
455
455
|
"enabled": {
|
|
456
|
-
"description": "Indicates if the remote cache is enabled.\n\nWhen `false`, Turborepo will disable all remote cache operations, even if the repo has a valid token. If `true`, remote caching is enabled, but still requires the user to login and link their repo to a remote cache.\n\nDocumentation: https://turborepo.
|
|
456
|
+
"description": "Indicates if the remote cache is enabled.\n\nWhen `false`, Turborepo will disable all remote cache operations, even if the repo has a valid token. If `true`, remote caching is enabled, but still requires the user to login and link their repo to a remote cache.\n\nDocumentation: https://turborepo.dev/docs/core-concepts/remote-caching",
|
|
457
457
|
"anyOf": [
|
|
458
458
|
{
|
|
459
459
|
"$ref": "#/definitions/Boolean"
|
|
@@ -464,7 +464,7 @@
|
|
|
464
464
|
]
|
|
465
465
|
},
|
|
466
466
|
"loginUrl": {
|
|
467
|
-
"description": "Set endpoint for requesting tokens during `turbo login`.\n\nDocumentation: https://turborepo.
|
|
467
|
+
"description": "Set endpoint for requesting tokens during `turbo login`.\n\nDocumentation: https://turborepo.dev/docs/core-concepts/remote-caching#self-hosting",
|
|
468
468
|
"anyOf": [
|
|
469
469
|
{
|
|
470
470
|
"$ref": "#/definitions/String"
|
|
@@ -574,7 +574,7 @@
|
|
|
574
574
|
}
|
|
575
575
|
},
|
|
576
576
|
"UI": {
|
|
577
|
-
"description": "Enable use of the UI for `turbo`.\n\nDocumentation: https://turborepo.
|
|
577
|
+
"description": "Enable use of the UI for `turbo`.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#ui",
|
|
578
578
|
"oneOf": [
|
|
579
579
|
{
|
|
580
580
|
"description": "Use the terminal user interface.",
|