All Projects → sindresorhus → Time Grunt

sindresorhus / Time Grunt

Licence: mit
Display the elapsed execution time of grunt tasks

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Time Grunt

Grunt Csswring
DEPRECATED. Minify CSS files using PostCSS-based CSSWring
Stars: ✭ 12 (-97.74%)
Mutual labels:  grunt, deprecated
Grunt Recess
[DEPRECATED] Lint and minify CSS and LESS
Stars: ✭ 205 (-61.39%)
Mutual labels:  grunt, deprecated
Grunt Filerev
[DEPRECATED] File revving
Stars: ✭ 261 (-50.85%)
Mutual labels:  grunt, deprecated
Lein template descjop
A Leiningen template(Clojure/ClojureScript Project) for Web based desktop application with Electron (atom-shell).
Stars: ✭ 394 (-25.8%)
Mutual labels:  grunt
Assemble
Community
Stars: ✭ 3,995 (+652.35%)
Mutual labels:  grunt
Enhancedlistview
[DEPRECATED] An Android ListView with enhanced functionality (e.g. Swipe To Dismiss or Undo)
Stars: ✭ 468 (-11.86%)
Mutual labels:  deprecated
Nickjs
Web scraping library made by the Phantombuster team. Modern, simple & works on all websites. (Deprecated)
Stars: ✭ 494 (-6.97%)
Mutual labels:  deprecated
Chromerestclient
ARC Chrome is deprecated. Please move to https://github.com/advanced-rest-client/arc-electron/
Stars: ✭ 381 (-28.25%)
Mutual labels:  deprecated
Pygeoip
DEPRECATED: Pure Python API for Maxmind's binary GeoIP databases
Stars: ✭ 483 (-9.04%)
Mutual labels:  deprecated
Tinx
⛔️ Laravel Tinx is archived and no longer maintained.
Stars: ✭ 437 (-17.7%)
Mutual labels:  deprecated
Json Loader
json loader module for webpack - UNMAINTAINED
Stars: ✭ 431 (-18.83%)
Mutual labels:  deprecated
Piranha
[DEPRECATED] This is the legacy version of Piranha CMS for .NET 4.5, MVC 5.2 & WebPages 3.2.
Stars: ✭ 418 (-21.28%)
Mutual labels:  deprecated
Django Knowledge
Add a help desk or knowledge base to your Django project with only a few lines of boilerplate code.
Stars: ✭ 473 (-10.92%)
Mutual labels:  deprecated
Govuk frontend toolkit
❗️GOV.UK Frontend Toolkit is deprecated, and will only receive major bug fixes and security patches.
Stars: ✭ 403 (-24.11%)
Mutual labels:  deprecated
Aawindow
[Deprecated] · UIWindow subclass to enable behavior like adaptive round-corners & detecting when Control Center is opened.
Stars: ✭ 486 (-8.47%)
Mutual labels:  deprecated
Kc3kai
Kantai Collection Game Viewer and Tools
Stars: ✭ 387 (-27.12%)
Mutual labels:  grunt
Gulp Ruby Sass
Compile Sass to CSS with Ruby Sass
Stars: ✭ 476 (-10.36%)
Mutual labels:  deprecated
Vue Mdc Adapter
DEPRECATED
Stars: ✭ 425 (-19.96%)
Mutual labels:  deprecated
Code Gov Web
DEPRECATED 🛑- Federal Source Code policy implementation.
Stars: ✭ 423 (-20.34%)
Mutual labels:  deprecated
Refined Twitter Old
[DEPRECATED] Chrome extension that enforces the mobile web version of Twitter and improves its interface
Stars: ✭ 442 (-16.76%)
Mutual labels:  deprecated

Deprecated

Deprecated because Grunt is practically unmaintained. Move on to something better. This package will continue to work with Grunt v1, but it will not receive any updates.


time-grunt Build Status

Display the elapsed execution time of grunt tasks

Install

$ npm install --save-dev time-grunt

Usage

// Gruntfile.js
module.exports = grunt => {
	// require it at the top and pass in the grunt instance
	require('time-grunt')(grunt);

	grunt.initConfig();
}

Optional callback

If you want to collect the timing stats for your own use, pass in a callback:

require('time-grunt')(grunt, (stats, done) => {
	// do whatever you want with the stats
	uploadReport(stats);

	// be sure to let grunt know when to exit
	done();
});

Clean layout

The watch task and tasks that take less than 1% of the total time are hidden to reduce clutter.

Run grunt with grunt --verbose to see all tasks.

Run grunt with grunt --quiet to quiet all tasks including time-grunt.

License

MIT © Sindre Sorhus

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].