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
- Host: GitHub
- URL: https://github.com/akullpp/modulargrunt
- Owner: akullpp
- License: mit
- Created: 2014-10-20T10:34:43.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2017-11-03T11:56:28.000Z (over 8 years ago)
- Last Synced: 2025-03-06T05:33:12.397Z (over 1 year ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.