Skip to content

Commit

Permalink
add bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jdewit committed Dec 7, 2013
1 parent ff83940 commit ccc9b94
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
bump: {
options: {
files: ['package.json', 'bower.json'],
updateConfigs: [],
commit: true,
commitMessage: 'Release v%VERSION%',
commitFiles: ['package.json', 'bower.json']
}
},
jshint: {
options: {
curly: true,
Expand Down Expand Up @@ -84,6 +93,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-angular-templates');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-bump');

grunt.registerTask('default', ['jshint', 'uglify', 'less', 'ngtemplates']);
};

0 comments on commit ccc9b94

Please sign in to comment.