0.1.1 • Published 9 years ago

grunt-multi-config v0.1.1

Weekly downloads
1
License
-
Repository
github
Last release
9 years ago

grunt-multi-config

Load grunt tasks from various config files.

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-multi-config --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-multi-config');

The "multi_config" task

Overview

In your project's Gruntfile, add a section named multi_config to the data object passed into grunt.initConfig().

grunt.initConfig({
  multi_config: {
    default: {
      options: {
        tasks: ['uglify:build', 'concat:dist']
      },
      // Config files containing tasks to be run
      src: [
        'test/fixtures/test-a.json',
        'test/fixtures/test-b.json',
        'test/fixtures/test-concat.json'
      ]
    }
  },
});

Options

options.tasks

Type: Array Default value: []

Task and target names you wish to run in each of your config files. The plugin will automatically overlook tasks that are invalid during running each file.

License

MIT