diff --git a/config/makeWebpackConfig.js b/config/webpack.config.web.js similarity index 100% rename from config/makeWebpackConfig.js rename to config/webpack.config.web.js diff --git a/package.json b/package.json index 5329332..8edbc6e 100644 --- a/package.json +++ b/package.json @@ -71,8 +71,8 @@ "scripts": { "prettify": "prettier --write '**/*.js'", "check-pretty": "prettier --list-different '**/*.js'", - "start": "NODE_ENV=development webpack-dev-server --config config/makeWebpackConfig.js", - "build": "NODE_ENV=production webpack --config config/makeWebpackConfig.js", + "start": "NODE_ENV=development webpack-dev-server --config config/webpack.config.web.js", + "build": "NODE_ENV=production webpack --config config/webpack.config.web.js", "backend": "node scripts/backend.js", "test": "node ./config/test.js", "unit": "BABEL_ENV=test NODE_ENV=test jest --env=jsdom",