From 96c46c6fa04888fdb3991ee2f016210169fad93b Mon Sep 17 00:00:00 2001 From: Paul Fitzpatrick Date: Thu, 28 Jul 2022 13:07:58 -0400 Subject: [PATCH] remove watch flag no longer available under newer webpack (#229) The `--hide-modules` flag tweaked how much webpack outputs to the console when in watch mode, but this flag got removed in a newer webpack version. --- sandbox/watch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sandbox/watch.sh b/sandbox/watch.sh index d83302d6..f314b537 100755 --- a/sandbox/watch.sh +++ b/sandbox/watch.sh @@ -13,7 +13,7 @@ if [ ! -e _build ]; then fi tsc --build -w --preserveWatchOutput $PROJECT & -catw app/client/*.css app/client/*/*.css -o static/bundle.css -v & webpack --config buildtools/webpack.config.js --mode development --watch --hide-modules & +catw app/client/*.css app/client/*/*.css -o static/bundle.css -v & webpack --config buildtools/webpack.config.js --mode development --watch & NODE_PATH=_build:_build/stubs:_build/ext nodemon --delay 1 -w _build/app/server -w _build/app/common _build/stubs/app/server/server.js & wait