parallel-webpack
parallel-webpack copied to clipboard
Builds multi-config webpack projects in parallel
#### Explain the problem Dear, this very useful plugin does not work with webpack 5. Unfortunately. Thank you #### Expected Behaviour #### Actual Behaviour #### Steps to reproduce #### Provide...
#### Explain the problem I call `parallel-webpack -p=2` but I see the following: ``` Starting type checking service... Using 1 worker with 4096MB memory limit Starting type checking service... Using...
#### Explain the problem I build webpack configs dynamically based on user interaction (terminal prompt). I can't and I don't wanna place each config as actual file in the project....
#### Explain the problem use ('parallel-webpack').run to compile multiple webpack configs with cache filesystem options paralell-webpack run options ``` { watch: false, maxRetries: 1, stats: false, // defaults to false...
#### Explain the problem #### Expected Behaviour #### Actual Behaviour #### Steps to reproduce #### Provide your webpack config #### Provide your Environment details - Node version: - Operating System:...
Could you support new feature to allow us pass the webpack configuration object directly? ## for now ``` var run = require('parallel-webpack').run, configPath = require.resolve('./webpack.config.js'); run(configPath, { watch: false, maxRetries:...
#### Explain the problem Let me start by pointing out that this package has improved the build time by a lot. We have about 20+ configurations that without `parallel-webpack` takes...
Does each CPU get **one job**? How can I limit four variants to run on 4 CPU's and then have four more run after the first 4 are done? This...
#### Explain the problem Currently, you can pass the `--watch` and `--no-stats` options from CLI or Node, but it would me much easier if `parallel-webpack` could infer those options from...
#### Explain the problem In my `webpack.config.js`, I have implemented my own logging system, where I log to the console when a bundle has started building, and when it has...