Skip to content

Commit

Permalink
use Grunt to bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
agallou committed Feb 19, 2014
1 parent a56045c commit 3ac91be
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules
21 changes: 21 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module.exports = function(grunt) {

grunt.initConfig({

bump: {
options: {
files: ['bower.json', 'highchartTable.jquery.json', 'package.json'],
commit: true,
commitMessage: 'Release v%VERSION%',
commitFiles: ['bower.json', 'highchartTable.jquery.json', 'package.json'],
createTag: true,
tagName: '%VERSION%',
tagMessage: 'Version %VERSION%',
push: false
}
}

});
grunt.loadNpmTasks('grunt-bump');

};
7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "highchartTable",
"version": "1.0.3",
"devDependencies": {
"grunt-bump": "0.0.13"
}
}

0 comments on commit 3ac91be

Please sign in to comment.