Package Exports
- gulp-untar
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-untar) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-untar
Extract tarballs in your gulp build pipeline
Accepts source files with either stream or Buffer contents. Outputs files with Buffer contents.
Install
$ npm install --save-dev gulp-untar
Usage
var gulp = require('gulp')
var untar = require('gulp-untar')
gulp.task('extract-archives', function () {
return gulp.src('./archive/*.tar')
.pipe(untar())
.pipe(gulp.dest('./extracted'))
})
In combination with gulp-gunzip and vinyl-source-stream:
var gulp = require('gulp')
var request = require('request')
var source = require('vinyl-source-stream')
var gunzip = require('gulp-gunzip')
var untar = require('gulp-untar')
gulp.task('default', function () {
return request('http://example.org/some-file.tar.gz')
.pipe(source('some-file.tar.gz'))
.pipe(gunzip())
.pipe(untar())
.pipe(gulp.dest('output'))
})