Skip to content

Latest commit

 

History

History
35 lines (20 loc) · 847 Bytes

readme.md

File metadata and controls

35 lines (20 loc) · 847 Bytes

time-grunt Build Status

Displays the elapsed execution time of grunt tasks

screenshot

Install

Install with npm: npm install --save time-grunt

Example

// 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', []);
}

Clean layout

To reduce visual clutter time-grunt automatically hides tasks that take less than 1% of the total time.

It see all tasks, run Grunt in verbose mode: grunt --verbose.

License

MIT License • © Sindre Sorhus