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: packages/release-cli/src/cli.ts
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,7 @@ export const cli = () => {
39
39
})
40
40
.option('allowCustom',{
41
41
type: 'boolean',
42
+
description: '[UNSAFE!] Allow custom releases from unpushed changes. This should only be used with snapshot or custom releases',
42
43
default: false,
43
44
})
44
45
.option('verbose',{
@@ -53,6 +54,11 @@ export const cli = () => {
53
54
'Skip user prompts and proceed with recommended settings. Use in CI only!',
54
55
default: false,
55
56
})
57
+
.option('skipUpdateVersions',{
58
+
type: 'boolean',
59
+
description: '[UNSAFE!] Skip the update version step. This should only be used for special releases like backports. The --workspaces argument is required when this argument is set.',
0 commit comments