parcel-plugin-concat

Parcel plugin to concatenate multiple js files

Usage no npm install needed!

<script type="module">
  import parcelPluginConcat from 'https://cdn.skypack.dev/parcel-plugin-concat';
</script>

README

parcel-plugin-concat

A Parcel plugin to concatenate multiple js files into a single bundle js.

Install

yarn add --dev parcel-plugin-concat

Usage

If you have more than one entry files Parcel can consume them like this:

parcel index.js another.js

or:

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.

License

MIT