An open API service indexing awesome lists of open source software.

https://github.com/akullpp/modulargrunt

Example for modularizing Gruntfile.js
https://github.com/akullpp/modulargrunt

Last synced: about 1 month ago
JSON representation

Example for modularizing Gruntfile.js

Awesome Lists containing this project

README

          

ModularGrunt
============

Example for modularizing Gruntfile.js

1. For each task: Create a file in `grunt/` with `.js` of the form:

module.export = {
// Task configuration.
}

2. For each profile: Add an option in `grunt/aliases.yml`

3. `load-grunt-config` will parse `package.json` for loading tasks.