Ahmad Amireh
Ahmad Amireh
Is it possible for you to stop the threadpool manually? As in, do you have the ability to tell when all your builds are finished? If the answer is yes,...
Hmm, I just checked the code and it seems that we're doing reference-counting and only really stopping the threadpool once all active compilers have emitted the "done" event. This makes...
1. First, HappyPlugin invokes `threadPool.stop` when the compiler emits "done" (are you using `--bail`?) in https://github.com/amireh/happypack/blob/master/lib/HappyPlugin.js#L107 2. Then, HappyThreadPool removes that compiler[1] from the list of active compilers in https://github.com/amireh/happypack/blob/master/lib/HappyThreadPool.js#L90...
Thanks for the great report. Regarding the sequential and parallel examples you're providing - is there a legit use-case for those? Why would you do that over the first approach,...
Hey, can you please try out the master branch and see if it fixes the issue? It seems similar to #132. Edit: in fact, version 3.0.3 on NPM now should...
Do you know if it's reading the .babelrc file at all? I assume it also includes presets along with the plugins, is it just the plugins that aren't recognized? -...
On the contrary, it was meant for use in development to save time when you have to keep restarting webpack (e.g. when changing config or switching branches.) But I'm sorry...
> We do use an ExtractTextPlugin Personally we use it only in production since it ramps up the build time quite heavily (+ getting hot-reload to work with it is...
Can you list your Webpack version and the config?
You should be able to use the OccurrenceOrder plugin to correct that, are you?