0.0.3 • Published 10 years ago

grunt-fast-load v0.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

grunt-fast-load

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