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);