@turbo/types 2.4.5-canary.4 → 2.4.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/package.json +1 -1
- package/schemas/schema.json +8 -0
- package/schemas/schema.v2.json +8 -0
- package/src/json/frameworks.json +2 -2
- package/src/types/config-v2.ts +11 -0
package/package.json
CHANGED
package/schemas/schema.json
CHANGED
|
@@ -173,6 +173,14 @@
|
|
|
173
173
|
"type": "boolean",
|
|
174
174
|
"description": "Label a persistent task as interruptible to allow it to be restarted by `turbo watch`. `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://turbo.build/repo/docs/reference/configuration#interruptible",
|
|
175
175
|
"default": false
|
|
176
|
+
},
|
|
177
|
+
"with": {
|
|
178
|
+
"type": "array",
|
|
179
|
+
"items": {
|
|
180
|
+
"type": "string"
|
|
181
|
+
},
|
|
182
|
+
"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://turbo.build/repo/docs/reference/configuration#with",
|
|
183
|
+
"default": []
|
|
176
184
|
}
|
|
177
185
|
},
|
|
178
186
|
"additionalProperties": false
|
package/schemas/schema.v2.json
CHANGED
|
@@ -173,6 +173,14 @@
|
|
|
173
173
|
"type": "boolean",
|
|
174
174
|
"description": "Label a persistent task as interruptible to allow it to be restarted by `turbo watch`. `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://turbo.build/repo/docs/reference/configuration#interruptible",
|
|
175
175
|
"default": false
|
|
176
|
+
},
|
|
177
|
+
"with": {
|
|
178
|
+
"type": "array",
|
|
179
|
+
"items": {
|
|
180
|
+
"type": "string"
|
|
181
|
+
},
|
|
182
|
+
"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://turbo.build/repo/docs/reference/configuration#with",
|
|
183
|
+
"default": []
|
|
176
184
|
}
|
|
177
185
|
},
|
|
178
186
|
"additionalProperties": false
|
package/src/json/frameworks.json
CHANGED
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
{
|
|
54
54
|
"slug": "nitro",
|
|
55
55
|
"name": "Nitro",
|
|
56
|
-
"envWildcards": ["NITRO_*"],
|
|
56
|
+
"envWildcards": ["NITRO_*", "SERVER_*", "AWS_APP_ID", "INPUT_AZURE_STATIC_WEB_APPS_API_TOKEN", "CLEAVR", "CF_PAGES", "FIREBASE_APP_HOSTING", "NETLIFY", "STORMKIT", "NOW_BUILDER", "ZEABUR", "RENDER"],
|
|
57
57
|
"dependencyMatch": {
|
|
58
58
|
"strategy": "some",
|
|
59
59
|
"dependencies": [
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
{
|
|
68
68
|
"slug": "nuxtjs",
|
|
69
69
|
"name": "Nuxt.js",
|
|
70
|
-
"envWildcards": ["NUXT_*", "NITRO_*"],
|
|
70
|
+
"envWildcards": ["NUXT_*", "NITRO_*", "SERVER_*", "AWS_APP_ID", "INPUT_AZURE_STATIC_WEB_APPS_API_TOKEN", "CLEAVR", "CF_PAGES", "FIREBASE_APP_HOSTING", "NETLIFY", "STORMKIT", "NOW_BUILDER", "ZEABUR", "RENDER"],
|
|
71
71
|
"dependencyMatch": {
|
|
72
72
|
"strategy": "some",
|
|
73
73
|
"dependencies": ["nuxt", "nuxt-edge", "nuxt3", "nuxt3-edge"]
|
package/src/types/config-v2.ts
CHANGED
|
@@ -309,6 +309,17 @@ export interface Pipeline {
|
|
|
309
309
|
* @defaultValue `false`
|
|
310
310
|
*/
|
|
311
311
|
interruptible?: boolean;
|
|
312
|
+
|
|
313
|
+
/**
|
|
314
|
+
* A list of tasks that will run alongside this task.
|
|
315
|
+
*
|
|
316
|
+
* Tasks in this list will not be run until completion before this task starts execution.
|
|
317
|
+
*
|
|
318
|
+
* Documentation: https://turbo.build/repo/docs/reference/configuration#with
|
|
319
|
+
*
|
|
320
|
+
* @defaultValue `[]`
|
|
321
|
+
*/
|
|
322
|
+
with?: Array<string>;
|
|
312
323
|
}
|
|
313
324
|
|
|
314
325
|
export interface RemoteCache {
|