turbo 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 +7 -7
- package/schema.json +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "turbo",
|
|
3
|
-
"version": "2.4.5-canary.
|
|
3
|
+
"version": "2.4.5-canary.7",
|
|
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.4.5-canary.
|
|
19
|
-
"turbo-darwin-arm64": "2.4.5-canary.
|
|
20
|
-
"turbo-linux-64": "2.4.5-canary.
|
|
21
|
-
"turbo-linux-arm64": "2.4.5-canary.
|
|
22
|
-
"turbo-windows-64": "2.4.5-canary.
|
|
23
|
-
"turbo-windows-arm64": "2.4.5-canary.
|
|
18
|
+
"turbo-darwin-64": "2.4.5-canary.7",
|
|
19
|
+
"turbo-darwin-arm64": "2.4.5-canary.7",
|
|
20
|
+
"turbo-linux-64": "2.4.5-canary.7",
|
|
21
|
+
"turbo-linux-arm64": "2.4.5-canary.7",
|
|
22
|
+
"turbo-windows-64": "2.4.5-canary.7",
|
|
23
|
+
"turbo-windows-arm64": "2.4.5-canary.7"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"postversion": "node bump-version.js"
|
package/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
|