bmstu-mt-wp/Gruntfile.js

17 lines
291 B
JavaScript
Raw Normal View History

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