We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 27182eb + d02834a commit a1e14dbCopy full SHA for a1e14db
2 files changed
gruntfile.js
@@ -2,6 +2,10 @@ var tsconfig = require('./tsconfig.json');
2
var shelljs = require("shelljs");
3
4
module.exports = function(grunt) {
5
+ if (grunt.option('profile')) {
6
+ grunt.log.writeln('Profiling all grunt tasks...');
7
+ require('time-grunt')(grunt);
8
+ }
9
10
if (grunt.cli.tasks.indexOf("testsapp") >= 0 || grunt.cli.tasks.indexOf("buildTestsApp")>= 0) {
11
var tsTester = require("./build/run-testsapp.grunt.js");
package.json
@@ -31,6 +31,7 @@
31
"mocha": "2.2.5",
32
"shelljs": "0.5.3",
33
"grunt-tslint": "3.0.0",
34
+ "time-grunt": "^1.3.0",
35
"tslint": "3.1.1",
36
"typescript": "1.7.3"
37
},
0 commit comments