-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
watchRun issue with latest version #63
Comments
Looking at the referenced https://github.com/sysgears/webpack-virtual-modules they do this: var watchRunHook = function(watcher, callback) {
self._watcher = watcher.compiler || watcher;
callback();
}
if (compiler.hooks) {
compiler.hooks.watchRun.tapAsync('VirtualModulesPlugin', watchRunHook);
} else {
compiler.plugin("watch-run", watchRunHook);
} My very limited understanding of this from reading through the commits of the above repo is that |
After testing @perifer's comment, I did some more research and found that Given that not everybody may be able to update to v4 just yet, I've made a PR to support older versions. #68 |
Fixed in 2.10.1, thanks @SimulatedGREG! |
I updated
svelte-loader
to the latest versionand now I'm getting this issue:
Edit: this seems to be an issue with the
svelte-loader
only. When I downgrade to v2.8.1 - everything works.The text was updated successfully, but these errors were encountered: