tar-bundler
Generate tar.bz bundles using system bzip2 if possible, or self-contained bzip2 if needed
Installation
yarn add @jcoreio/tar-bundler
Usage
const { bundle } = require('@jcoreio/tar-bundler')
async function makeBundle() {
await bundle({ srcDir: 'myDir', destFile: 'archive.tar.bz2' })
console.log('successfully saved archive')
}