From 3a3d5ef9f266a8d700b5704752f643065ce2cdb1 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Mon, 14 Dec 2015 13:02:31 -0600 Subject: [PATCH] fix e2e.bundle task dependencies --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 1559857fe7..0bad31d6c9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -288,7 +288,7 @@ gulp.task('e2e.build', function() { } }); -gulp.task('e2e.bundle', ['e2e.build'], function(done) { +gulp.task('e2e.bundle', ['e2e.build', 'bundle', 'copy.web-animations', 'sass', 'fonts'], function(done) { var glob = require('glob'); var webpack = require('webpack'); var path = require('path');