-
Notifications
You must be signed in to change notification settings - Fork 752
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Enforce all deps must be declared at root (#16741)
* refactor: Enforce all deps must be declared at root Signed-off-by: Xuanwo <[email protected]> * Add docs Signed-off-by: Xuanwo <[email protected]> * sort deps Signed-off-by: Xuanwo <[email protected]> * Fix arrow Signed-off-by: Xuanwo <[email protected]> --------- Signed-off-by: Xuanwo <[email protected]>
- Loading branch information
Showing
53 changed files
with
486 additions
and
464 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"dependencies": { | ||
"type": "object", | ||
"additionalProperties": { | ||
"type": "object", | ||
"properties": { | ||
"workspace": { | ||
"type": "boolean", | ||
"enum": [ | ||
true | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"workspace" | ||
] | ||
} | ||
}, | ||
"dev-dependencies": { | ||
"type": "object", | ||
"additionalProperties": { | ||
"type": "object", | ||
"properties": { | ||
"workspace": { | ||
"type": "boolean", | ||
"enum": [ | ||
true | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"workspace" | ||
] | ||
} | ||
}, | ||
"build-dependencies": { | ||
"type": "object", | ||
"additionalProperties": { | ||
"type": "object", | ||
"properties": { | ||
"workspace": { | ||
"type": "boolean", | ||
"enum": [ | ||
true | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"workspace" | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.