aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.travis.yml4
-rw-r--r--Gruntfile.js1
2 files changed, 1 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index fb038aba..6a24af3f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,9 +18,7 @@ before_script:
- mkdir -p $LOGS_DIR
- ./lib/sauce/sauce_connect_setup.sh
- npm install -g grunt-cli
- - grunt bower
- - grunt bower
- - grunt package-without-bower
+ - grunt package
- ./scripts/travis/wait_for_browser_provider.sh
script:
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']);
};