turbo 2.4.3-canary.1 → 2.4.3-canary.3

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.
Files changed (2) hide show
  1. package/package.json +7 -7
  2. package/schema.json +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "turbo",
3
- "version": "2.4.3-canary.1",
3
+ "version": "2.4.3-canary.3",
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.3-canary.1",
19
- "turbo-darwin-arm64": "2.4.3-canary.1",
20
- "turbo-linux-64": "2.4.3-canary.1",
21
- "turbo-linux-arm64": "2.4.3-canary.1",
22
- "turbo-windows-64": "2.4.3-canary.1",
23
- "turbo-windows-arm64": "2.4.3-canary.1"
18
+ "turbo-darwin-64": "2.4.3-canary.3",
19
+ "turbo-darwin-arm64": "2.4.3-canary.3",
20
+ "turbo-linux-64": "2.4.3-canary.3",
21
+ "turbo-linux-arm64": "2.4.3-canary.3",
22
+ "turbo-windows-64": "2.4.3-canary.3",
23
+ "turbo-windows-arm64": "2.4.3-canary.3"
24
24
  },
25
25
  "scripts": {
26
26
  "postversion": "node bump-version.js"
package/schema.json CHANGED
@@ -223,6 +223,14 @@
223
223
  "type": "number",
224
224
  "description": "Sets a timeout for remote cache uploads. Value is given in seconds and only whole values are accepted. If `0` is passed, then there is no timeout for any remote cache uploads.",
225
225
  "default": 60
226
+ },
227
+ "teamId": {
228
+ "type": "string",
229
+ "description": "The ID of the Remote Cache team. Value will be passed as `teamId` in the querystring for all Remote Cache HTTP calls. Must start with `team_` or it will not be used."
230
+ },
231
+ "teamSlug": {
232
+ "type": "string",
233
+ "description": "The slug of the Remote Cache team. Value will be passed as `slug` in the querystring for all Remote Cache HTTP calls."
226
234
  }
227
235
  },
228
236
  "additionalProperties": false