parcel-plugin-concat
v0.2.3
Published
Parcel plugin to concatenate multiple js files
Readme
parcel-plugin-concat
A Parcel plugin to concatenate multiple js files into a single bundle js.
Install
yarn add --dev parcel-plugin-concatUsage
If you have more than one entry files Parcel can consume them like this:
parcel index.js another.jsor:
parcel src/**/*.jsHowever, 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.
