-
Notifications
You must be signed in to change notification settings - Fork 86
/
Gruntfile.js
179 lines (166 loc) · 5.09 KB
/
Gruntfile.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/*
* git-changelog
* https://github.com/rafinskipg/git-changelog
*
* Copyright (c) 2013 rafinskipg
* Licensed under the MIT license.
*/
'use strict';
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
jshint: {
all: [
'Gruntfile.js',
'tasks/**/*.js',
'test/**/*.spec.js'
],
options: {
jshintrc: '.jshintrc',
},
},
// Before generating any new files, remove any previously-created files.
clean: {
tests: [
'output/tag1.md',
'EXTENDEDCHANGELOG.md'
],
},
// Configuration to be run (and then tested).
git_changelog: {
minimal: {
options: {
app_name : 'Git changelog',
logo : 'https://github.com/rafinskipg/git-changelog/raw/master/images/git-changelog-logo.png',
intro : 'Git changelog is a utility tool for generating changelogs. It is free and opensource. :)'
}
},
tag1: {
options: {
app_name : 'Since tag 1 changelog',
intro: 'This changelog is from the previous tag',
file: 'output/tag1.md',
logo : 'https://github.com/rafinskipg/git-changelog/raw/master/images/git-changelog-logo.png',
version_name : 'squeezy potatoe',
tag: 'v0.0.1',
debug: true,
sections: [
{
"title": "Bug Fixes",
"grep": "^fix"
},
{
"title": "Pull requests merged",
"grep": "^Merge pull request"
}
]
}
},
customTemplate: {
options: {
app_name : 'Custom Template',
intro: 'This changelog is generated with a custom template',
file: 'output/customTemplate.md',
template: 'templates/template_two.md',
logo : 'https://github.com/rafinskipg/git-changelog/raw/master/images/git-changelog-logo.png',
version_name : 'squeezy potatoe',
tag: 'v0.0.1',
debug: true
}
},
customCommitTemplate: {
options: {
app_name : 'Custom Commit Template',
intro: 'This changelog is generated with a custom commit template',
file: 'output/customCommitTemplate.md',
commit_template: 'templates/commit_template_two.md',
logo : 'https://github.com/rafinskipg/git-changelog/raw/master/images/git-changelog-logo.png',
version_name : 'custom commit template potatoe',
tag: 'v0.0.1',
debug: true
}
},
extended: {
options: {
app_name : 'Git changelog extended',
logo : 'https://github.com/rafinskipg/git-changelog/raw/master/images/git-changelog-logo.png',
intro : 'Git changelog is a utility tool for generating changelogs. It is free and opensource. :)',
repo_url: 'https://github.com/rafinskipg/git-changelog',
tag: false,
debug: true,
file : 'EXTENDEDCHANGELOG.md',
sections: [
{
"title": "Bug Fixes",
"grep": "^fix"
},
{
"title": "Features",
"grep": "^feat"
},
{
"title": "Documentation",
"grep": "^docs"
},
{
"title": "Breaking changes",
"grep": "BREAKING"
},
{
"title": "Refactor",
"grep": "^refactor"
},
{
"title": "Style",
"grep": "^style"
},
{
"title": "Test",
"grep": "^test"
},
{
"title": "Chore",
"grep": "^chore"
},
{
"title": "Branchs merged",
"grep": "^Merge branch"
},
{
"title" : "Pull requests merged",
"grep": "^Merge pull request"
}
]
}
}
},
// Unit tests.
nodeunit: {
tests: ['test/*_test.js'],
},
mochaTest: {
test: {
options: {
reporter: 'spec',
//captureFile: 'tests/results.txt', // Optionally capture the reporter output to a file
quiet: false // Optionally suppress output to standard out (defaults to false)
},
src: ['test/**/*.spec.js']
}
},
});
// Actually load this plugin's task(s).
grunt.loadTasks('tasks');
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-mocha-test');
// Whenever the "test" task is run, first clean the "tmp" dir, then run this
// plugin's task(s), then test the result.
grunt.registerTask('pre-test', ['clean', 'git_changelog']);
// grunt.registerTask('test', ['clean', 'git_changelog', 'mochaTest']);
// By default, lint and run all tests.
grunt.registerTask('default', ['jshint', 'pre-test']);
// By default, lint and run all tests.
grunt.registerTask('ch', [ 'git_changelog']);
};