From e4c16feace34f27052e46db8690018fd974df815 Mon Sep 17 00:00:00 2001 From: Vio Date: Mon, 5 Jul 2021 10:47:56 +0200 Subject: [PATCH] fix: Remove stage command - not used anymore --- src/webpack/index.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/webpack/index.js b/src/webpack/index.js index 7bda6a5cf..159f6af19 100644 --- a/src/webpack/index.js +++ b/src/webpack/index.js @@ -37,10 +37,6 @@ const start = () => { spawnWebPack('webpack.config.dev', 'serve', ['--host', '0.0.0.0']); }; -const stage = () => { - spawnWebPack('webpack.config.stg'); -}; - const compileWebpackConfig = (webpackConfig) => new Promise((resolve, reject) => webpack(webpackConfig).run((err, stats) => { @@ -76,7 +72,6 @@ const build = () => Promise.all([buildClient(), buildRender()]); module.exports = { start, - stage, build, buildClient, buildRender