diff options
| author | Ken Sheedlo | 2013-06-28 16:47:10 -0700 | 
|---|---|---|
| committer | Igor Minar | 2013-07-01 15:42:14 -0700 | 
| commit | c8fcf3b369dbe866815e18e0fa4d71f3e679bc5f (patch) | |
| tree | e91dad99dbe67000299e6ee18ac5ec3042d853d1 /lib/grunt/plugins.js | |
| parent | 0c6fb665a4e2e1e7ceb11372153963658d4b53b1 (diff) | |
| download | angular.js-c8fcf3b369dbe866815e18e0fa4d71f3e679bc5f.tar.bz2 | |
feat(minErr): Error stripping build step
Diffstat (limited to 'lib/grunt/plugins.js')
| -rw-r--r-- | lib/grunt/plugins.js | 4 | 
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(); +  });  }; | 
