Archive files to zip/tar file
- archive files to zip/tar file
- archive node project to zip file
- archive node project to tar file
- support install node into node_modules
Node>8.6.0
npm install archive-tool
const Archive = require('archive-tool');
const archive = new Archive({
source: ['src', 'lib', 'package.json'],
target: 'dist'
});
archive.zip();