|
module.exports = function(grunt) {
|
|
|
|
require('load-grunt-tasks')(grunt);
|
|
|
|
grunt.initConfig({
|
|
bump: {
|
|
options: {
|
|
files: ['package.json', 'bower.json'],
|
|
commitFiles: ['package.json', 'bower.json'],
|
|
pushTo: 'origin'
|
|
}
|
|
}
|
|
});
|
|
|
|
grunt.registerTask('default', ['bump']);
|
|
|
|
}; |