Skip to content

Commit

Permalink
Configure grunt-bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemelia committed Aug 31, 2014
1 parent 3507eaf commit 9151ccb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Gruntfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-bump');

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: true,
pushTo: 'origin',
gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d'
}
},
});
};

0 comments on commit 9151ccb

Please sign in to comment.