turbo 2.7.5-canary.2 → 2.7.5-canary.4

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 +11 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "turbo",
3
- "version": "2.7.5-canary.2",
3
+ "version": "2.7.5-canary.4",
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.7.5-canary.2",
19
- "turbo-darwin-arm64": "2.7.5-canary.2",
20
- "turbo-linux-64": "2.7.5-canary.2",
21
- "turbo-linux-arm64": "2.7.5-canary.2",
22
- "turbo-windows-64": "2.7.5-canary.2",
23
- "turbo-windows-arm64": "2.7.5-canary.2"
18
+ "turbo-darwin-64": "2.7.5-canary.4",
19
+ "turbo-darwin-arm64": "2.7.5-canary.4",
20
+ "turbo-linux-64": "2.7.5-canary.4",
21
+ "turbo-linux-arm64": "2.7.5-canary.4",
22
+ "turbo-windows-64": "2.7.5-canary.4",
23
+ "turbo-windows-arm64": "2.7.5-canary.4"
24
24
  },
25
25
  "scripts": {
26
26
  "postversion": "node bump-version.js"
package/schema.json CHANGED
@@ -345,6 +345,17 @@
345
345
  }
346
346
  ]
347
347
  },
348
+ "description": {
349
+ "description": "A human-readable description of what this task does.\n\nThis field is for documentation purposes only and does not affect task execution or caching behavior.",
350
+ "anyOf": [
351
+ {
352
+ "$ref": "#/definitions/String"
353
+ },
354
+ {
355
+ "type": "null"
356
+ }
357
+ ]
358
+ },
348
359
  "env": {
349
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.com/docs/reference/configuration#env",
350
361
  "type": ["array", "null"],