• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/* jshint node: true */
2module.exports = function(grunt) {
3  'use strict';
4
5  grunt.loadNpmTasks('grunt-bump');
6
7  grunt.initConfig({
8    bump: {
9      options: {
10        files: ['package.json', 'bower.json'],
11        commitFiles: ['package.json', 'bower.json'],
12        pushTo: 'origin'
13      }
14    }
15  });
16};
17