From 6aa3be444e8147a08bd7939d5470bc556f57834c Mon Sep 17 00:00:00 2001 From: Dimitar Kerezov Date: Fri, 18 Dec 2015 12:19:05 +0200 Subject: [PATCH] Add $ grunt all task Shorthand for clean test lint --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index bf5c061ae4..b432c963b0 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -184,6 +184,6 @@ module.exports = function(grunt) { "copy:package_to_qa_drop_folder" ]); grunt.registerTask("lint", ["tslint:build"]); - + grunt.registerTask("all", ["clean", "test", "lint"]); grunt.registerTask("default", "ts:devlib"); };