Skip to content

Commit

Permalink
Added grunt-timer to show elapsed time of task
Browse files Browse the repository at this point in the history
  • Loading branch information
kevindixon committed Jan 27, 2015
1 parent 8b97503 commit b43c68c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
* Grunt definition
*/
module.exports = function(grunt) {
// Time the execution of the task
var timer = require("grunt-timer");
timer.init(grunt);

// Project configuration.
grunt.initConfig({
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "od-performance-budget",
"version": "0.0.2",
"version": "0.0.3",
"devDependencies": {
"grunt": "~0.4.5",
"grunt-pagespeed": "~0.4.1",
"grunt-yslow": "~0.0.4",
"grunt-perfbudget": "~0.1.6"
"grunt-perfbudget": "~0.1.6",
"grunt-timer": "~0.5.8"
},
"repository" : {
"type" : "git",
Expand Down

0 comments on commit b43c68c

Please sign in to comment.