From ed9c7eca7dd232376b7c9e4ee824b1aa5cfb0ac8 Mon Sep 17 00:00:00 2001 From: Ken Date: Sun, 3 Mar 2019 20:36:19 -0800 Subject: [PATCH] added playground to nonwebpack entry --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index ac13d60..b8e1733 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -34,7 +34,7 @@ fs.readdirSync('./').filter(step => { } } - if (!isEntryPoint && step.includes('step')) { + if (!isEntryPoint && (step.includes('step') || step.includes('playground'))) { nonWebpackedEntries.push(step); } });