Add time-grunt

This commit is contained in:
Ben Word
2014-03-30 20:38:08 -05:00
parent bb604f36b8
commit 1a9b71edcf
2 changed files with 7 additions and 4 deletions

View File

@@ -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'

View File

@@ -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"
}
}