From 1a9b71edcf22bf01eea6a93d83c4a165c7a1e30c Mon Sep 17 00:00:00 2001 From: Ben Word Date: Sun, 30 Mar 2014 20:38:08 -0500 Subject: [PATCH] Add time-grunt --- Gruntfile.js | 8 +++++--- package.json | 3 ++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index ddfa42c..335f805 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,5 +1,10 @@ 'use strict'; module.exports = function(grunt) { + // Load all tasks + require('load-grunt-tasks')(grunt); + // Show elapsed time + require('time-grunt')(grunt); + var jsFileList = [ 'assets/vendor/bootstrap/js/transition.js', 'assets/vendor/bootstrap/js/alert.js', @@ -148,9 +153,6 @@ module.exports = function(grunt) { } }); - // Load tasks - require('load-grunt-tasks')(grunt); - // Register tasks grunt.registerTask('default', [ 'dev' diff --git a/package.json b/package.json index 92c0f50..3c0cdc1 100644 --- a/package.json +++ b/package.json @@ -35,6 +35,7 @@ "grunt-contrib-uglify": "~0.2.4", "grunt-contrib-watch": "~0.5.3", "grunt-modernizr": "~0.5.1", - "load-grunt-tasks": "~0.3.0" + "load-grunt-tasks": "~0.3.0", + "time-grunt": "~0.3.1" } }