forked from GreenGremlin/karma-gzip-preprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
45 lines (41 loc) · 896 Bytes
/
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
const loadGruntTasks = require('load-grunt-tasks');
module.exports = grunt => {
grunt.initConfig({
pkgFile: 'package.json',
bump: {
options: {
commitMessage: 'Release v%VERSION%',
pushTo: 'origin',
commitFiles: [
'package.json',
'CHANGELOG.md',
],
},
},
conventionalChangelog: {
release: {
options: {
changelogOpts: {
preset: 'angular',
},
},
src: 'CHANGELOG.md',
},
},
eslint: {
target: [
'.',
],
},
});
loadGruntTasks(grunt);
grunt.registerTask('default', ['eslint']);
grunt.registerTask('release', 'Bump the version and publish to NPM.', type => {
grunt.task.run([
`bump-only:${(type || 'patch')}`,
'conventionalChangelog',
'bump-commit',
'npm-publish',
]);
});
};