@jcoreio/tar-bundler
v1.1.0
Published
Generate tar.bz2 bundles
Downloads
10
Readme
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')
}