Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/config-import-bundle.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/rest-import-bundle.js

Large diffs are not rendered by default.

123 changes: 100 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.11",
"@babel/register": "=7.22.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@testing-library/jest-dom": "^6.0.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
Expand Down Expand Up @@ -124,7 +123,6 @@
"postcss-preset-env": "^9.0.0",
"prettier": "^2.8.8",
"process": "^0.11.10",
"react-refresh": "^0.14.0",
"react-scripts": "5.0.1",
"sass": "^1.63.6",
"sass-loader": "^13.3.0",
Expand Down
4 changes: 0 additions & 4 deletions webpack/dev.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
*/

import path from "path"
import ReactRefreshWebpackPlugin from "@pmmmwh/react-refresh-webpack-plugin"
import HtmlWebpackPlugin from "html-webpack-plugin"
import { HtmlWebpackSkipAssetsPlugin } from "html-webpack-skip-assets-plugin"

Expand All @@ -30,7 +29,6 @@ const devConfig = configBuilder(
"./src/standalone/index.js",
],
"rest-import-ui": "./src/style/main.scss",
vendors: ["react-refresh/runtime"],
},

performance: {
Expand Down Expand Up @@ -79,7 +77,6 @@ const devConfig = configBuilder(
options: {
retainLines: true,
cacheDirectory: true,
plugins: [isDevelopment && require.resolve("react-refresh/babel")].filter(Boolean),
},
},
{
Expand All @@ -94,7 +91,6 @@ const devConfig = configBuilder(
},

plugins: [
isDevelopment && new ReactRefreshWebpackPlugin({ library: "[name]" }),
new HtmlWebpackPlugin({
template: path.join(projectBasePath, "dev-helpers", "index.html"),
}),
Expand Down