blob: 265a0de0fad096c2beb08edca785f1718fd4f0ce [file] [log] [blame]
/* jshint node: true */
module.exports = function(grunt) {
'use strict';
grunt.loadNpmTasks('grunt-bump');
grunt.initConfig({
bump: {
options: {
files: ['package.json', 'bower.json'],
commitFiles: ['package.json', 'bower.json'],
pushTo: 'origin'
}
}
});
};