Skip to content
Merged
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
20 changes: 0 additions & 20 deletions .claude/settings.local.json

This file was deleted.

10 changes: 3 additions & 7 deletions config/webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ const webpackConfig = {
splitChunks: false,
},
mode: 'development',
// interfaces and type aliases are not left after transpilation, causing
// legitimate typescript exports to trigger warnings in webpack
ignoreWarnings: [/export .* was not found in/],
devtool: 'eval-cheap-module-source-map',
module: {
unsafeCache: true,
Expand Down Expand Up @@ -168,13 +171,6 @@ const webpackConfig = {
hot: true,
open: false,
allowedHosts: 'all',
devMiddleware: {
stats: {
// interfaces and type aliases are not left after transpilation, causing
// legitimate typescript exports to trigger warnings in webpack
warningsFilter: /export .* was not found in/,
},
},
proxy: [
{
// NOTE: Any future backend-only routes added to deploy/main.js need to be listed here:
Expand Down
15 changes: 12 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx && yarn prettier ./src/**/*.scss --check",
"lint:fix": "yarn eslint . --ext .js,.jsx,.ts,.tsx --fix && yarn prettier ./src/**/*.scss --write",
"prettier:fix": "yarn prettier . --write",
"start": "DEVMODE=local webpack serve --hot --color --progress --info=true --config config/webpack.dev.js",
"start": "DEVMODE=local webpack serve --hot --color --progress --config config/webpack.dev.js",
"start:prod-server": "./scripts/prod-server.sh",
"start:remote": " DEPRECATED_CORS=false NODE_ENV=dev ./scripts/remote-dev.sh",
"start:remote:localprod": " DEPRECATED_CORS=false ./scripts/remote-dev-localprod.sh",
Expand Down Expand Up @@ -71,7 +71,7 @@
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.15.2"
"webpack-dev-server": "^5.2.5"
},
"dependencies": {
"@hot-loader/react-dom": "^17.0.1",
Expand Down Expand Up @@ -130,8 +130,17 @@
"tough-cookie": "4.1.3",
"follow-redirects": "^1.15.6",
"braces": "^3.0.3",
"brace-expansion": "5.0.7",
"path-to-regexp": "0.1.10",
"express": "^4.19.2"
"express": "^4.19.2",
"form-data": "^3.0.4",
"fast-uri": "^3.1.2",
"connected-react-router/immutable": "^4.3.8",
"sass/immutable": "^5.1.5",
"jsdom/ws": "^7.5.11",
"webpack-bundle-analyzer/ws": "^7.5.11",
"webpack-dev-server/ws": "^8.21.0",
"ip-address": "^10.1.1"
},
"packageManager": "yarn@3.6.4",
"directories": {
Expand Down
Loading
Loading