From 05fa9bc9fb7b548602888192d761eb894cf45ae6 Mon Sep 17 00:00:00 2001 From: Rado Kirov Date: Thu, 21 May 2015 18:55:48 -0700 Subject: [PATCH] feat(router): add the router bundle to the bundle task. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 8cc776ad44..ab874b7fce 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -797,7 +797,7 @@ gulp.task('bundle.js.sfx.dev.deps', ['bundle.js.sfx.dev'], function() { .pipe(gulp.dest('dist/bundle')); }); -gulp.task('bundle.js.deps', ['bundle.js.prod.deps', 'bundle.js.dev.deps', 'bundle.js.min.deps', 'bundle.js.sfx.dev.deps']); +gulp.task('bundle.js.deps', ['bundle.js.prod.deps', 'bundle.js.dev.deps', 'bundle.js.min.deps', 'bundle.js.sfx.dev.deps', 'router.bundle.js.dev']); gulp.task('build.js', ['build.js.dev', 'build.js.prod', 'build.js.cjs', 'bundle.js.deps']);