turbo 2.9.19-canary.8 → 2.10.0

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 +48 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "turbo",
3
- "version": "2.9.19-canary.8",
3
+ "version": "2.10.0",
4
4
  "description": "Turborepo is a high-performance build system for JavaScript and TypeScript codebases.",
5
5
  "homepage": "https://turborepo.dev",
6
6
  "bugs": "https://github.com/vercel/turborepo/issues",
@@ -15,12 +15,12 @@
15
15
  ],
16
16
  "main": "./bin/turbo",
17
17
  "optionalDependencies": {
18
- "@turbo/darwin-64": "2.9.19-canary.8",
19
- "@turbo/darwin-arm64": "2.9.19-canary.8",
20
- "@turbo/linux-64": "2.9.19-canary.8",
21
- "@turbo/linux-arm64": "2.9.19-canary.8",
22
- "@turbo/windows-64": "2.9.19-canary.8",
23
- "@turbo/windows-arm64": "2.9.19-canary.8"
18
+ "@turbo/darwin-64": "2.10.0",
19
+ "@turbo/darwin-arm64": "2.10.0",
20
+ "@turbo/linux-64": "2.10.0",
21
+ "@turbo/linux-arm64": "2.10.0",
22
+ "@turbo/windows-64": "2.10.0",
23
+ "@turbo/windows-arm64": "2.10.0"
24
24
  },
25
25
  "scripts": {
26
26
  "postversion": "node bump-version.js"
package/schema.json CHANGED
@@ -581,7 +581,7 @@
581
581
  "description": "The set of glob patterns to consider as inputs to this task.\n\nChanges to files covered by these globs will cause a cache miss and the task will be rerun. If a file has been changed that is **not** included in the set of globs, it will not cause a cache miss. If omitted or empty, all files in the package are considered as inputs.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#inputs",
582
582
  "type": ["array", "null"],
583
583
  "items": {
584
- "$ref": "#/definitions/String"
584
+ "$ref": "#/definitions/TaskInput"
585
585
  }
586
586
  },
587
587
  "interactive": {
@@ -759,6 +759,43 @@
759
759
  "String": {
760
760
  "type": "string"
761
761
  },
762
+ "StructuredInput": {
763
+ "type": "object",
764
+ "properties": {
765
+ "from": {
766
+ "type": ["array", "null"],
767
+ "items": {
768
+ "$ref": "#/definitions/String"
769
+ }
770
+ },
771
+ "globs": {
772
+ "type": ["array", "null"],
773
+ "items": {
774
+ "$ref": "#/definitions/String"
775
+ }
776
+ },
777
+ "mode": {
778
+ "anyOf": [
779
+ {
780
+ "$ref": "#/definitions/String"
781
+ },
782
+ {
783
+ "type": "null"
784
+ }
785
+ ]
786
+ },
787
+ "withDefaults": {
788
+ "anyOf": [
789
+ {
790
+ "$ref": "#/definitions/Boolean"
791
+ },
792
+ {
793
+ "type": "null"
794
+ }
795
+ ]
796
+ }
797
+ }
798
+ },
762
799
  "TagRules": {
763
800
  "description": "Boundary rules for a tag.\n\nRestricts which packages a tag can import and which packages can import this tag.",
764
801
  "type": "object",
@@ -787,6 +824,16 @@
787
824
  }
788
825
  }
789
826
  },
827
+ "TaskInput": {
828
+ "anyOf": [
829
+ {
830
+ "$ref": "#/definitions/String"
831
+ },
832
+ {
833
+ "$ref": "#/definitions/StructuredInput"
834
+ }
835
+ ]
836
+ },
790
837
  "UI": {
791
838
  "description": "Enable use of the UI for `turbo`.\n\nDocumentation: https://turborepo.dev/docs/reference/configuration#ui",
792
839
  "oneOf": [