@turbo/types 2.4.5-canary.5 → 2.4.5-canary.7

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.4.5-canary.5",
3
+ "version": "2.4.5-canary.7",
4
4
  "description": "Turborepo types",
5
5
  "homepage": "https://turbo.build/repo",
6
6
  "license": "MIT",
@@ -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
@@ -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
@@ -53,7 +53,20 @@
53
53
  {
54
54
  "slug": "nitro",
55
55
  "name": "Nitro",
56
- "envWildcards": ["NITRO_*"],
56
+ "envWildcards": [
57
+ "NITRO_*",
58
+ "SERVER_*",
59
+ "AWS_APP_ID",
60
+ "INPUT_AZURE_STATIC_WEB_APPS_API_TOKEN",
61
+ "CLEAVR",
62
+ "CF_PAGES",
63
+ "FIREBASE_APP_HOSTING",
64
+ "NETLIFY",
65
+ "STORMKIT",
66
+ "NOW_BUILDER",
67
+ "ZEABUR",
68
+ "RENDER"
69
+ ],
57
70
  "dependencyMatch": {
58
71
  "strategy": "some",
59
72
  "dependencies": [
@@ -67,7 +80,21 @@
67
80
  {
68
81
  "slug": "nuxtjs",
69
82
  "name": "Nuxt.js",
70
- "envWildcards": ["NUXT_*", "NITRO_*"],
83
+ "envWildcards": [
84
+ "NUXT_*",
85
+ "NITRO_*",
86
+ "SERVER_*",
87
+ "AWS_APP_ID",
88
+ "INPUT_AZURE_STATIC_WEB_APPS_API_TOKEN",
89
+ "CLEAVR",
90
+ "CF_PAGES",
91
+ "FIREBASE_APP_HOSTING",
92
+ "NETLIFY",
93
+ "STORMKIT",
94
+ "NOW_BUILDER",
95
+ "ZEABUR",
96
+ "RENDER"
97
+ ],
71
98
  "dependencyMatch": {
72
99
  "strategy": "some",
73
100
  "dependencies": ["nuxt", "nuxt-edge", "nuxt3", "nuxt3-edge"]
@@ -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 {