npm-tar
v1.0.1
Published
Pack npm module with npm-pack specs tar bundle.
Downloads
298
Readme
npm-tar
A Packer for npm module with npm-pack specs tar bundle. inspired by npm-pack
Author: Allex Wang ([email protected])
Usage
// promisify
const tarPack = BB.promisify(require('npm-tar').pack)
const target = 'foo.tgz'
const pkg = require('./package.json')
tarPack(target, dir, pkg)
.then(() => {
// done
})