From 4ef168cbb55e241237154b4b647a1001b4edefbf Mon Sep 17 00:00:00 2001 From: Leonardo Matos Date: Sun, 22 Dec 2019 18:46:50 -0300 Subject: [PATCH] build(bin): fix webpack externals for node (ecomplus/utils,axios) BREAKING CHANGE: ecomplus/utils still not shipped but is no more direct dep --- build/bin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/bin.js b/build/bin.js index 206c0ff..3ef6c36 100644 --- a/build/bin.js +++ b/build/bin.js @@ -70,7 +70,7 @@ webpackConfigList.push({ ...webpackOutput, filename: webpackOutput.filename.replace('.js', '.node.js') }, - externals: /^(core-js|@ecomplus\/utils)/i + externals: /^(@ecomplus\/utils|axios)/i }) webpack(webpackConfigList, (err, stats) => {