turbo 2.7.5-canary.11 → 2.7.5-canary.13

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 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "turbo",
3
- "version": "2.7.5-canary.11",
3
+ "version": "2.7.5-canary.13",
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.11",
19
- "turbo-darwin-arm64": "2.7.5-canary.11",
20
- "turbo-linux-64": "2.7.5-canary.11",
21
- "turbo-linux-arm64": "2.7.5-canary.11",
22
- "turbo-windows-64": "2.7.5-canary.11",
23
- "turbo-windows-arm64": "2.7.5-canary.11"
18
+ "turbo-darwin-64": "2.7.5-canary.13",
19
+ "turbo-darwin-arm64": "2.7.5-canary.13",
20
+ "turbo-linux-64": "2.7.5-canary.13",
21
+ "turbo-linux-arm64": "2.7.5-canary.13",
22
+ "turbo-windows-64": "2.7.5-canary.13",
23
+ "turbo-windows-arm64": "2.7.5-canary.13"
24
24
  },
25
25
  "scripts": {
26
26
  "postversion": "node bump-version.js"
package/schema.json CHANGED
@@ -253,7 +253,14 @@
253
253
  },
254
254
  "FutureFlags": {
255
255
  "description": "Opt into breaking changes prior to major releases, experimental features, and beta features.\n\nNote: Currently all previous future flags (turboExtendsKeyword, nonRootExtends) have been graduated and are now enabled by default.",
256
- "type": "object"
256
+ "type": "object",
257
+ "properties": {
258
+ "errorsOnlyShowHash": {
259
+ "description": "When using `outputLogs: \"errors-only\"`, show task hashes when tasks complete successfully. This provides visibility into which tasks are running without showing full output logs.",
260
+ "default": false,
261
+ "type": "boolean"
262
+ }
263
+ }
257
264
  },
258
265
  "Map_of_TagRules": {
259
266
  "type": "object",