/* 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'
}
}
});
};