From 8cc34d168e606da9c42888a7012121faf1737bbb Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Wed, 29 Jul 2020 16:46:08 -0700 Subject: [PATCH] webpack: Remove stale reference to webpack-helpers. Signed-off-by: Anders Kaseorg --- tools/webpack | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/webpack b/tools/webpack index 7ff053b14f..a23d806a2e 100755 --- a/tools/webpack +++ b/tools/webpack @@ -73,7 +73,7 @@ def build_for_dev_server(host: str, port: str, minify: bool, disable_host_check: watch_manager = pyinotify.WatchManager() event_notifier = pyinotify.Notifier(watch_manager, WebpackConfigFileChangeHandler()) - for file in ['webpack.config.ts', 'webpack-helpers.ts', 'webpack.assets.json']: + for file in ['webpack.config.ts', 'webpack.assets.json']: filepath = os.path.join(os.path.dirname(__file__), file) watch_manager.add_watch(filepath, pyinotify.IN_MODIFY) event_notifier.loop()