You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: schemas/config.json
+29-6Lines changed: 29 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -248,10 +248,6 @@
248
248
"description": "When using the `node-workspace` plugin, force all local dependencies to be linked.",
249
249
"type": "boolean"
250
250
},
251
-
"update-peer-dependencies": {
252
-
"description": "When using the `node-workspace` plugin, also bump peer dependency versions if they are modified.",
253
-
"type": "boolean"
254
-
},
255
251
"plugins": {
256
252
"description": "Plugins to apply to pull requests. Plugins can be added to perform extra release processing that cannot be achieved by an individual release strategy.",
257
253
"type": "array",
@@ -304,7 +300,31 @@
304
300
"type": "string",
305
301
"enum": [
306
302
"cargo-workspace",
307
-
"maven-workspace",
303
+
"maven-workspace"
304
+
]
305
+
},
306
+
"updateAllPackages": {
307
+
"description": "Whether to force updating all packages regardless of the dependency tree. Defaults to `false`.",
308
+
"type": "boolean"
309
+
},
310
+
"merge": {
311
+
"description": "Whether to merge in-scope pull requests into a combined release pull request. Defaults to `true`.",
312
+
"type": "boolean"
313
+
},
314
+
"considerAllArtifacts": {
315
+
"description": "Whether to analyze all packages in the workspace for cross-component version bumping. This currently only works for the maven-workspace plugin. Defaults to `true`.",
316
+
"type": "boolean"
317
+
}
318
+
}
319
+
},
320
+
{
321
+
"description": "Configuration for various `workspace` plugins.",
322
+
"type": "object",
323
+
"properties": {
324
+
"type": {
325
+
"description": "The name of the plugin.",
326
+
"type": "string",
327
+
"enum": [
308
328
"node-workspace"
309
329
]
310
330
},
@@ -319,6 +339,10 @@
319
339
"considerAllArtifacts": {
320
340
"description": "Whether to analyze all packages in the workspace for cross-component version bumping. This currently only works for the maven-workspace plugin. Defaults to `true`.",
321
341
"type": "boolean"
342
+
},
343
+
"updatePeerDependencies": {
344
+
"description": "Also bump peer dependency versions if they are modified. Defaults to `false`.",
0 commit comments