archive-tool
v1.0.4
Published
archive files to zip/tar
Downloads
444
Maintainers
Readme
archive-tool
Archive files to zip/tar file
Featues
- [x] archive files to zip/tar file
- [x] archive node project to zip file
- [x] archive node project to tar file
- [x] support install node into node_modules
Node>8.6.0
Install
npm install archive-tool
Usage
const Archive = require('archive-tool');
const archive = new Archive({
source: ['src', 'lib', 'package.json'],
target: 'dist'
});
archive.zip();