Skip to content

Commit

Permalink
fix(build): Bump config is now nested in 'options'
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh David Miller committed Jun 25, 2013
1 parent fc27ae9 commit ddb0aca
Showing 1 changed file with 18 additions and 11 deletions.
29 changes: 18 additions & 11 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,24 @@ module.exports = function ( grunt ) {
* Increments the version number, etc.
*/
bump: {
files: [ 'package.json', 'bower.json' ],
updateConfigs: [ 'pkg' ],
commit: true,
commitMessage: 'chore(release): v${version}',
commitFiles: [ 'package.json', 'bower.json' ],
createTag: true,
tagName: 'v${version}',
tagMessage: 'Version ${version}',
push: true,
pushTo: 'origin'
},
options: {
files: [
"package.json",
"bower.json"
],
commit: false,
commitMessage: 'chore(release): v%VERSION%',
commitFiles: [
"package.json",
"client/bower.json"
],
createTag: false,
tagName: 'v%VERSION%',
tagMessage: 'Version %VERSION%',
push: false,
pushTo: 'origin'
}
},

/**
* The directories to delete when `grunt clean` is executed.
Expand Down

0 comments on commit ddb0aca

Please sign in to comment.