Parcel plugin to concatenate multiple js files
npm install parcel-plugin-concatA Parcel plugin to concatenate multiple js files into a single bundle js.
``sh`
yarn add --dev parcel-plugin-concat
If you have more than one entry files Parcel can consume them like this:
`sh`
parcel index.js another.js
or:
`sh`
parcel src/*/.js
However, the output files are not merged but still separated as individual files under dist/ unless you manually create a single entry file that requires all the individual assets.
This plugin lets you simply concatenate all the multiple entries before processing so that you can get a single output file. The name of output file adheres to the Parcel command options -o and --out-file, but otherwise it's by default bundle.js`.