grunt-fast-load

0.0.3 • Public • Published

grunt-fast-load Build Status

Load individually grunt tasks using globbing patterns

This module works like load-grunt-tasks. However, reads the plugin-specific settings, if any, before loading it.

Install

$ npm install --save-dev grunt-fast-load

Gruntfile.js example

'use strict';
module.exports = function (grunt) {

  require('./index')(grunt, {
    pattern: ['*'],
    config: require('./package'),
    scope: 'devDependencies'
  });

  grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),

    clean: ['clean-test.js']
  });

  grunt.registerTask('default', ['clean']);
};

License

MIT © William Urbano

Package Sidebar

Install

npm i grunt-fast-load

Weekly Downloads

0

Version

0.0.3

License

MIT

Last publish

Collaborators

  • williamurbano