Skip to content

Commit 7e66ee7

Browse files
committed
WIP 856fb
1 parent defbe75 commit 7e66ee7

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

packages/turbo-types/schemas/schema.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,6 @@
115115
"description": "Enable extending from a non-root `turbo.json`\n\nWhen enabled, allows using extends targeting `turbo.json`s other than root. All `turbo.json` must still extend from the root `turbo.json` first."
116116
}
117117
},
118-
"required": [
119-
"turboExtendsKeyword",
120-
"nonRootExtends"
121-
],
122118
"additionalProperties": false,
123119
"description": "Opt into breaking changes prior to major releases, experimental features, and beta features.",
124120
"default": {}

packages/turbo-types/schemas/schema.v2.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,6 @@
115115
"description": "Enable extending from a non-root `turbo.json`\n\nWhen enabled, allows using extends targeting `turbo.json`s other than root. All `turbo.json` must still extend from the root `turbo.json` first."
116116
}
117117
},
118-
"required": [
119-
"turboExtendsKeyword",
120-
"nonRootExtends"
121-
],
122118
"additionalProperties": false,
123119
"description": "Opt into breaking changes prior to major releases, experimental features, and beta features.",
124120
"default": {}

packages/turbo-types/src/types/config-v2.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,14 +202,14 @@ export interface RootSchema extends BaseSchema {
202202
* When enabled, allows using `$TURBO_EXTENDS$` in array fields.
203203
* This will change the default behavior of overriding the field to instead append.
204204
*/
205-
turboExtendsKeyword: boolean;
205+
turboExtendsKeyword?: boolean;
206206

207207
/** Enable extending from a non-root `turbo.json`
208208
*
209209
* When enabled, allows using extends targeting `turbo.json`s other than
210210
* root. All `turbo.json` must still extend from the root `turbo.json` first.
211211
*/
212-
nonRootExtends: boolean;
212+
nonRootExtends?: boolean;
213213
};
214214
}
215215

0 commit comments

Comments
 (0)