Skip to content

Commit

Permalink
fix: Remove stage command - not used anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
vio committed Jul 5, 2021
1 parent b7fcdcc commit e4c16fe
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/webpack/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down Expand Up @@ -76,7 +72,6 @@ const build = () => Promise.all([buildClient(), buildRender()]);

module.exports = {
start,
stage,
build,
buildClient,
buildRender
Expand Down

0 comments on commit e4c16fe

Please sign in to comment.