From 5882bf9bc2ac370ff609841e07e7044f43e03dd0 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Fri, 4 Dec 2015 15:31:50 -0600 Subject: [PATCH] fix number of demo entries --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 4d9ec24a91..59798dd9d1 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -50,7 +50,7 @@ function buildDemoBundle(opts, done) { // add our bundle entry, removing previous if necessary // since config is cached - if (config.entry.length > 5) { + if (config.entry.length > 4) { config.entry.pop(); } config.entry.push('./' + file);