Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions src/schemas/json/pnpm-workspace.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,11 +180,17 @@
},
"allowedDeprecatedVersions": {
"description": "A list of deprecated versions that the warnings are suppressed.",
"type": "object"
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"patchedDependencies": {
"description": "A list of dependencies that are patched.",
"type": "object"
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"allowUnusedPatches": {
"description": "When true, installation won't fail if some of the patches from the \"patchedDependencies\" field were not applied. (Previously named \"allowNonAppliedPatches\")",
Expand Down