{"library":"parallel-webpack","title":"parallel-webpack","description":"Build multiple webpack configurations in parallel using all CPU cores. Current stable version is 2.6.0 (released 2020), with an alpha 3.0.0 that drops watch mode and switches from worker-farm to jest-worker. Reduces build times dramatically (e.g., from 16 min to 2 min for 32 variants). Key differentiator: built-in createVariants helper for generating configuration combinations without manual config arrays.","language":"javascript","status":"active","last_verified":"Sat Apr 25","install":{"commands":["npm install parallel-webpack"],"cli":{"name":"parallel-webpack","version":null}},"imports":["import { createVariants } from 'parallel-webpack'","parallel-webpack (CLI command)","const { run } = require('parallel-webpack'); run(configs, options);"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// webpack.config.js\nvar path = require('path');\nmodule.exports = [{\n  entry: './pageA.js',\n  output: {\n    path: path.resolve(__dirname, './dist'),\n    filename: 'pageA.bundle.js'\n  }\n}, {\n  entry: './pageB.js',\n  output: {\n    path: path.resolve(__dirname, './dist'),\n    filename: 'pageB.bundle.js'\n  }\n}];\n\n// CLI: npx parallel-webpack --config webpack.config.js","lang":"javascript","description":"Demonstrates basic usage: exporting an array of configs and running via CLI to build in parallel.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}