webpack upgrade

master
Tudor Stanciu 2021-05-15 02:03:00 +03:00
parent 27588b3f06
commit 3b8a81cb46
4 changed files with 2451 additions and 4540 deletions

6968
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,7 @@
"description": "Reverse proxy frontend application", "description": "Reverse proxy frontend application",
"scripts": { "scripts": {
"start": "run-p start:dev", "start": "run-p start:dev",
"start:dev": "webpack-dev-server --config webpack.config.dev.js --port 3000", "start:dev": "webpack serve --config webpack.config.dev.js --port 3000",
"clean:build": "rimraf ./build && mkdir build", "clean:build": "rimraf ./build && mkdir build",
"prebuild": "run-p clean:build", "prebuild": "run-p clean:build",
"build": "webpack --config webpack.config.prod.js" "build": "webpack --config webpack.config.prod.js"
@ -40,7 +40,7 @@
"babel-eslint": "10.0.1", "babel-eslint": "10.0.1",
"babel-loader": "8.0.5", "babel-loader": "8.0.5",
"babel-preset-react-app": "7.0.2", "babel-preset-react-app": "7.0.2",
"copy-webpack-plugin": "^6.0.1", "copy-webpack-plugin": "^8.1.1",
"css-loader": "2.1.1", "css-loader": "2.1.1",
"cssnano": "4.1.10", "cssnano": "4.1.10",
"eslint": "5.15.2", "eslint": "5.15.2",
@ -48,21 +48,22 @@
"eslint-plugin-import": "2.16.0", "eslint-plugin-import": "2.16.0",
"eslint-plugin-react": "7.12.4", "eslint-plugin-react": "7.12.4",
"fetch-mock": "7.3.1", "fetch-mock": "7.3.1",
"html-webpack-plugin": "3.2.0", "html-webpack-plugin": "5.3.1",
"mini-css-extract-plugin": "0.5.0", "mini-css-extract-plugin": "0.5.0",
"node-fetch": "^2.3.0", "node-fetch": "^2.3.0",
"npm-run-all": "4.1.5", "npm-run-all": "4.1.5",
"postcss-loader": "3.0.0", "postcss-loader": "3.0.0",
"process": "^0.11.10",
"react-test-renderer": "16.8.4", "react-test-renderer": "16.8.4",
"react-testing-library": "6.0.0", "react-testing-library": "6.0.0",
"redux-immutable-state-invariant": "2.1.0", "redux-immutable-state-invariant": "2.1.0",
"redux-mock-store": "1.5.3", "redux-mock-store": "1.5.3",
"rimraf": "2.6.3", "rimraf": "2.6.3",
"style-loader": "0.23.1", "style-loader": "0.23.1",
"webpack": "^4.43.0", "webpack": "^5.37.0",
"webpack-bundle-analyzer": "^3.8.0", "webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^3.3.11", "webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.0" "webpack-dev-server": "^3.11.2"
}, },
"engines": { "engines": {
"node": ">=8" "node": ">=8"

View File

@ -67,7 +67,10 @@ const ForwardOptionsComponent = ({ title, options }) => {
</StyledTableCell> </StyledTableCell>
</Tooltip> </Tooltip>
<StyledTableCell align="center"> <StyledTableCell align="center">
<ActiveIcon active={options.pathOverwrite} loading={loading} /> <ActiveIcon
active={options.pathOverwrite?.on}
loading={loading}
/>
</StyledTableCell> </StyledTableCell>
</StyledTableRow> </StyledTableRow>
</TableBody> </TableBody>

View File

@ -32,6 +32,9 @@ module.exports = {
new HtmlWebpackPlugin({ new HtmlWebpackPlugin({
template: "src/index.html", template: "src/index.html",
favicon: "src/favicon.ico" favicon: "src/favicon.ico"
}),
new webpack.ProvidePlugin({
process: "process/browser"
}) })
], ],
module: { module: {