17 lines
291 B
JavaScript
17 lines
291 B
JavaScript
|
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']);
|
||
|
|
||
|
};
|