🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

gulp-decompress

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-decompress

Extract TAR, TAR.BZ2, TAR.GZ and ZIP archives

latest
Source
npmnpm
Version
3.0.0
Version published
Weekly downloads
78K
-15.63%
Maintainers
2
Weekly downloads
 
Created
Source

gulp-decompress Build Status

Extract TAR, TAR.BZ2, TAR.GZ and ZIP archives using decompress

Install

$ npm install gulp-decompress

Usage

const decompress = require('gulp-decompress');
const gulp = require('gulp');

gulp.task('default', () =>
	gulp.src('*.{tar,tar.bz2,tar.gz,zip}')
		.pipe(decompress({strip: 1}))
		.pipe(gulp.dest('dist'))
);

Options

See the decompress options.

Keywords

bz2

FAQs

Package last updated on 13 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts