catlogjs
Version:
Static site generator, translate human readable text format(such as markdown) into html, with a lot of other functions
30 lines (17 loc) • 658 B
Markdown
# time-grunt [](http://travis-ci.org/sindresorhus/time-grunt)
> Displays the elapsed execution time of [grunt](http://gruntjs.com) tasks

## Install
Install with [npm](https://npmjs.org/package/time-grunt): `npm install --save time-grunt`
## Example
```js
// Gruntfile.js
module.exports = function (grunt) {
// require it at the top and pass in the grunt instance
require('time-grunt')(grunt);
grunt.initConfig();
grunt.registerTask('default', []);
}
```
## License
MIT License • © [Sindre Sorhus](http://sindresorhus.com)