-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGruntfile.js
45 lines (35 loc) · 860 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
/*
* grunt-bower-map
* https://github.com/tylerbeck/grunt-bower-map
*
* Copyright (c) 2014 Tyler Beck
* Licensed under the MIT license.
*/
'use strict';
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
bump: {
options: {
files: ['package.json'],
updateConfigs: [],
commit: true,
commitMessage: 'Release v%VERSION%',
commitFiles: ['package.json'],
createTag: true,
tagName: 'v%VERSION%',
tagMessage: 'Version %VERSION%',
push: false,
pushTo: 'upstream',
gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d',
globalReplace: false,
prereleaseName: false,
regExp: false
}
}
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-bump');
// By default, lint and run all tests.
grunt.registerTask('default', ['bump']);
};