Skip to content

Commit

Permalink
implement a make release target using grunt-bump
Browse files Browse the repository at this point in the history
  • Loading branch information
dnauck committed Feb 3, 2015
1 parent c787a78 commit 5f87f5f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-angular-templates');

// Default task(s).
grunt.registerTask('default', ['clean', 'jshint:all', 'ngtemplates', 'concat', 'copy', 'uglify', 'cssmin']);
grunt.registerTask('default', ['build']);
grunt.registerTask('build', ['clean', 'jshint:all', 'ngtemplates', 'concat', 'copy', 'uglify', 'cssmin']);
grunt.registerTask('makeRelease', ['bump-only', 'build', 'bump-commit']);

};

0 comments on commit 5f87f5f

Please sign in to comment.