aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorKen Sheedlo2013-06-28 16:47:10 -0700
committerIgor Minar2013-07-01 15:42:14 -0700
commitc8fcf3b369dbe866815e18e0fa4d71f3e679bc5f (patch)
treee91dad99dbe67000299e6ee18ac5ec3042d853d1 /Gruntfile.js
parent0c6fb665a4e2e1e7ceb11372153963658d4b53b1 (diff)
downloadangular.js-c8fcf3b369dbe866815e18e0fa4d71f3e679bc5f.tar.bz2
feat(minErr): Error stripping build step
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 1d5f3542..968b2b82 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -191,6 +191,6 @@ module.exports = function(grunt) {
grunt.registerTask('minify', ['shell:bower','clean', 'build', 'minall']);
grunt.registerTask('test:e2e', ['connect:testserver', 'test:end2end']);
grunt.registerTask('webserver', ['connect:devserver']);
- grunt.registerTask('package', ['shell:bower','clean', 'buildall', 'minall', 'docs', 'copy', 'write', 'compress']);
+ grunt.registerTask('package', ['shell:bower','clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);
grunt.registerTask('default', ['package']);
};