aboutsummaryrefslogtreecommitdiffstats
path: root/lib/grunt/plugins.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/grunt/plugins.js')
-rw-r--r--lib/grunt/plugins.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/grunt/plugins.js b/lib/grunt/plugins.js
index ca2d6ec6..aaf1e73e 100644
--- a/lib/grunt/plugins.js
+++ b/lib/grunt/plugins.js
@@ -59,4 +59,8 @@ module.exports = function(grunt) {
grunt.registerMultiTask('autotest', 'Run and watch the unit tests with Karma', function(){
util.startKarma.call(util, this.data, false, this.async());
});
+
+ grunt.registerTask('collect-errors', 'Combine stripped error files', function () {
+ util.collectErrors();
+ });
};