Sha256: 167afe786c7da6cff96959017263bfe19a6c759c3782d257ecccf1f6d972b7e0
Contents?: true
Size: 511 Bytes
Versions: 13
Compression:
Stored size: 511 Bytes
Contents
module.exports = function (grunt) { 'use strict' // Enable time-grunt for nice reporting of time spent on grunt tasks require('time-grunt')(grunt); var pkg = grunt.file.readJSON('package.json'); var cfg = { pkg: pkg, bump: { options: { pushTo: 'origin' } } }; // load all grunt tasks without specifying them by name require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks); grunt.initConfig(cfg); grunt.registerTask('default', ['bump']) };
Version data entries
13 entries across 13 versions & 1 rubygems