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: index.js
+19-5Lines changed: 19 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,14 @@ const argv = require('yargs')
10
10
nargs: 1,
11
11
demand: false
12
12
})
13
+
.option('semver',{
14
+
alias: 's',
15
+
describe: 'Which semantic version diffs to include (https://semver.org). Flag can be used multiple times.\nSupported options:\n* major: Include upgrades with a major version change\n* minor: Include upgrades with a minor version change\n* patch: Include upgrades with a patch version change',
16
+
type: 'string',
17
+
array: true,
18
+
nargs: 1,
19
+
demand: false
20
+
})
13
21
.option('debug',{
14
22
alias: 'd',
15
23
describe: 'Prints debugging information, such as commands executed and current status.',
0 commit comments