From 08178ecac0811b9adf13a1b5c079d92fb6416bd3 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Tue, 1 Mar 2016 10:04:09 -0600 Subject: [PATCH] chore(demos): fix demo entries --- gulpfile.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 7566326307..e72e11e83c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -522,10 +522,6 @@ gulp.task('demos', ['bundle.demos'], function() { return merge([demosStream, cssStream]); }); - gulp.task('demos.dev', function() { - - }); - /** * Builds necessary files for each demo then bundles them using webpack. Unlike * e2e tests, demos are bundled for performance (but have a slower build). @@ -542,7 +538,7 @@ gulp.task('bundle.demos', ['build.demos', 'transpile', 'copy.libs', 'sass', 'fon // add our bundle entry, removing previous if necessary // since config is cached - if (config.entry.length > 4) { + if (config.entry.length > 3) { config.entry.pop(); } config.entry.push('./' + file);