aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.travis.yml4
-rw-r--r--Gruntfile.js1
2 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 5ae0a5b6..4d0bfcdf 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,7 +13,9 @@ before_script:
- mkdir -p $LOGS_DIR
- ./lib/sauce/sauce_connect_setup.sh
- npm install -g grunt-cli
- - grunt package
+ - grunt bower
+ - grunt bower
+ - grunt package-without-bower
- grunt ci-checks
- ./lib/sauce/sauce_connect_block.sh
diff --git a/Gruntfile.js b/Gruntfile.js
index 8fbf84b0..40ffbd4e 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -261,6 +261,7 @@ 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']);
grunt.registerTask('default', ['package']);
};