forked from ariatemplates/git-release-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.js
executable file
·79 lines (76 loc) · 1.76 KB
/
cli.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env node
var argv = require("optimist").usage("git-release-notes [<options>] <since>..<until> <template>")
.options("f", {
"alias": "file"
})
.options("p", {
"alias": "path",
"default": process.cwd()
})
.options("t", {
"alias": "title",
"default": "(.*)"
})
.boolean("i")
.alias("i", "ignore-case")
.options("m", {
"alias": "meaning",
"default": ['type']
})
.options("b", {
"alias": "branch",
"default": "master"
})
.options("s", {
"alias": "script",
"default": "./issue-linker.js"
})
.options("o", {
"alias": "gitlog-option",
"default" : []
})
.options("j", {
"alias": "project"
})
.boolean("c")
.alias("c", "merge-commits")
.describe({
"f": "Configuration file",
"p": "Git project path",
"t": "Commit title regular expression",
"i": "Ignore case of title's regular expression",
"m": "Meaning of capturing block in title's regular expression",
"b": "Git branch, defaults to master",
"s": "External script to rewrite the commit history",
"c": "Only use merge commits",
"o": "Additional git log options AND ignore 'c' option",
"j": "Name of the project being released"
})
.boolean("version")
.check(function (argv) {
// Added template default so only one argument is required
if (argv._.length >= 1 && argv._.length <=2) {
return true;
}
throw "Invalid parameters, please specify an interval and the template";
})
.argv;
const index = require('./index');
// default to using the issuelink template to reduce things
// dev needs to remember
let template;
if(!argv._[1]) {
template = "issuelink-markdown"
}
else {
template = argv._[1]
}
index(argv, argv._[0], template)
.then(function (output) {
process.stdout.write(output + "\n");
})
.catch(function (error) {
require("optimist").showHelp();
console.error('\n', error.message);
process.exit(1);
});