webpack: Remove stale reference to webpack-helpers.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2020-07-29 16:46:08 -07:00
parent 9e215093ca
commit 8cc34d168e
1 changed files with 1 additions and 1 deletions

View File

@ -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()