I have a build step (a hook) that needs to happen after webpack --watch finishes. Has anyone had success hooking into webpack --watch to determine when it has completed?
In other words it would like this:
- start
webpack --watch
in the background - file(s) change,
webpack --watch
creates a new build - run some hook after
webpack
completes the rebuild
does anyone know a good way of doing this?