From 7d29e530487cf070bbe308f42822edb5c8ca7668 Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Wed, 5 Sep 2018 16:49:26 -0500 Subject: [PATCH] remove stray `?` in webpack.config.js --- lib/pipeline/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pipeline/webpack.config.js b/lib/pipeline/webpack.config.js index 11bb033b..0b24a22e 100644 --- a/lib/pipeline/webpack.config.js +++ b/lib/pipeline/webpack.config.js @@ -36,7 +36,7 @@ try { } const entry = Object.keys(embarkAssets) - .filter(key => key.match(/\.js?$/)) + .filter(key => key.match(/\.js$/)) .reduce((obj, key) => { // webpack entry paths should start with './' if they're relative to the // webpack context; embark.json "app" keys correspond to lists of .js