@@ -14,11 +14,17 @@ const PROMOTE = 'promote';
14
14
const RELEASERS = 'releasers' ;
15
15
16
16
const releaseOptions = {
17
- run : {
18
- describe : 'Run steps that involve touching more than the local clone, ' +
19
- 'including `git push` commands. Might not work if a passphrase ' +
20
- 'required to push to the remote clone.' ,
21
- type : 'boolean'
17
+ filterLabel : {
18
+ describe : 'Labels separated by "," to filter security PRs' ,
19
+ type : 'string'
20
+ } ,
21
+ 'gpg-sign' : {
22
+ describe : 'GPG-sign commits, will be passed to the git process' ,
23
+ alias : 'S'
24
+ } ,
25
+ newVersion : {
26
+ describe : 'Version number of the release to be prepared' ,
27
+ type : 'string'
22
28
} ,
23
29
prepare : {
24
30
describe : 'Prepare a new release of Node.js' ,
@@ -32,22 +38,16 @@ const releaseOptions = {
32
38
describe : 'Default relase date when --prepare is used. It must be YYYY-MM-DD' ,
33
39
type : 'string'
34
40
} ,
41
+ run : {
42
+ describe : 'Run steps that involve touching more than the local clone, ' +
43
+ 'including `git push` commands. Might not work if a passphrase ' +
44
+ 'required to push to the remote clone.' ,
45
+ type : 'boolean'
46
+ } ,
35
47
security : {
36
48
describe : 'Demarcate the new security release as a security release' ,
37
49
type : 'boolean'
38
50
} ,
39
- newVersion : {
40
- describe : 'Version number of the release to be prepared' ,
41
- type : 'string'
42
- } ,
43
- filterLabel : {
44
- describe : 'Labels separated by "," to filter security PRs' ,
45
- type : 'string'
46
- } ,
47
- 'gpg-sign' : {
48
- describe : 'GPG-sign commits, will be passed to the git process' ,
49
- alias : 'S'
50
- } ,
51
51
skipBranchDiff : {
52
52
describe : 'Skips the initial branch-diff check when preparing releases' ,
53
53
type : 'boolean'
0 commit comments