chore(demos): fix demo entries

This commit is contained in:
Tim Lancina
2016-03-01 10:04:09 -06:00
parent 487da57e37
commit 08178ecac0

View File

@ -522,10 +522,6 @@ gulp.task('demos', ['bundle.demos'], function() {
return merge([demosStream, cssStream]); return merge([demosStream, cssStream]);
}); });
gulp.task('demos.dev', function() {
});
/** /**
* Builds necessary files for each demo then bundles them using webpack. Unlike * Builds necessary files for each demo then bundles them using webpack. Unlike
* e2e tests, demos are bundled for performance (but have a slower build). * 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 // add our bundle entry, removing previous if necessary
// since config is cached // since config is cached
if (config.entry.length > 4) { if (config.entry.length > 3) {
config.entry.pop(); config.entry.pop();
} }
config.entry.push('./' + file); config.entry.push('./' + file);