aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorIgor Minar2014-02-06 02:31:23 -0800
committerIgor Minar2014-02-06 02:31:23 -0800
commite609239fab46d7f8af195a69756c91b4f66c8463 (patch)
treeed495cf033b49fb7017972af44bb599729f58b4c /Gruntfile.js
parent4224cd5182bc93e4a210f75e0a4e4de7f3c544e8 (diff)
downloadangular.js-e609239fab46d7f8af195a69756c91b4f66c8463.tar.bz2
chore(travis): remove double bower install to test if it's still needed
We did this due to travis-ci/travis-ci#1293 but since it's possible that this hack is not needed, I'm removing it. If it turns out that we do need it still then we should ping the travis issue and revert this commit
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index d9e58049..123a0d72 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -300,7 +300,6 @@ module.exports = function(grunt) {
grunt.registerTask('minify', ['bower','clean', 'build', 'minall']);
grunt.registerTask('webserver', ['connect:devserver']);
grunt.registerTask('package', ['bower','clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);
- grunt.registerTask('package-without-bower', ['clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);
grunt.registerTask('ci-checks', ['ddescribe-iit', 'merge-conflict', 'jshint', 'jscs']);
grunt.registerTask('default', ['package']);
};