Jason Miller
Jason Miller
Hmm - are you using the latest version of Angular CLI? If so, it ships with this plugin included by default. Perhaps two of them is causing the issue? If...
Yup, as best I can tell this is a bug in Webpack's parser API :( FWIW I think it would actually be better to switch from static analysis to having...
For passers-by: if anyone has an interest in adding support for CommonJS export parsing, I'd be happy to review and merge a PR for it.
@rjgotten yes, configurable plugins would be nice. I implemented that feature in [worker-plugin](https://github.com/googlechromelabs/worker-plugin), and folks seem to use it. The trick with `worker-loader` is that there isn't really a great...
@rjgotten that Gist looks good - want to PR it here? It could be exported as `require('workerize-loader').OptionsPlugin`.
Hi there - your `async` function is being transpiled to use helper methods, rather than being an actual async function. If you want to use an async function with Greenlet,...
In the case of workerize and greenlet, no pooling is supported. For those use-cases, I'd recommend Clooney since it has built-in strategies for pooling. I'm going to update the readme...
Hi @gpolyn - there's some extra stuff going on in that file that you can get rid of when using Workerize. Here's a modified version: https://gist.github.com/developit/65a2212731f6b00a8aaa55d70c594f5c Perk: you can just...
Good catch, I updated.
@ScottPeterJohnson hmm - wouldn't this work though? The plugin generates a URL based on __webpack_public_path__, which you are assigning a new value to. One thing I wanted to clarify -...