0.1.1 • Published 4 years ago
tar-webpack-plugin v0.1.1
tar-webpack-plugin
A webpack plugin to create an archive or extract an archive to disk, packaged from node-tar
Install
npm install -d tar-webpack-plugin
or
yarn add -D tar-webpack-pluginUsage
const TarWebpackPlugin = require('tar-webpack-plugin').default;
module.exports = {
...
plugins: [
new TarWebpackPlugin(options)
]
}options
action'c' or 'create'Create an archive'x' or 'extract'Extract an archive to disk
delSourcewhether to delete the source filefileListan array of paths- when
action='c' or 'create', The fileList is an array of paths to add to the tarball. Adding a directory also adds its children recursively. - when
action='x' or 'extract', The fileList is an array of paths to extract from the tarball. If no paths are provided, then all the entries are extracted.
- when
filea filename- when
action='c' or 'create', Write the tarball archive to the specified filename. - when
action='x' or 'extract', The archive file to extract. If not specified, then a Writable stream is returned where the archive data should be written.
- when
cwdworking directory, efaults to process.cwd().- when
action='c' or 'create', The current working directory for creating the archive. - when
action='x' or 'extract', Extract files relative to the specified directory.
- when
gzipSet to any truthy value to create a gzipped archive, or an object with settings for zlib.Gzip(). Onlyaction='c' or 'create'
More options can see tar.create options and tar.extract options
Examples
To replicate tar czf my-tarball.tgz files folders, you'd do:
new TarWebpackPlugin({
action: 'c',
gzip: true,
file: 'my-tarball.tgz',
fileList: ['files', 'folders']
})To replicate tar xf my-tarball.tgz you'd do:
new TarWebpackPlugin({
action: 'x',
file: 'my-tarball.tgz'
})