aboutsummaryrefslogtreecommitdiff
path: root/node_modules/gulp-tar/readme.md
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/gulp-tar/readme.md
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/gulp-tar/readme.md')
-rw-r--r--node_modules/gulp-tar/readme.md48
1 files changed, 0 insertions, 48 deletions
diff --git a/node_modules/gulp-tar/readme.md b/node_modules/gulp-tar/readme.md
deleted file mode 100644
index 5b036443a..000000000
--- a/node_modules/gulp-tar/readme.md
+++ /dev/null
@@ -1,48 +0,0 @@
-# gulp-tar [![Build Status](https://travis-ci.org/sindresorhus/gulp-tar.svg?branch=master)](https://travis-ci.org/sindresorhus/gulp-tar)
-
-> Create [tarball](http://en.wikipedia.org/wiki/Tar_(computing)) from files
-
-
-## Install
-
-```
-$ npm install --save-dev gulp-tar
-```
-
-
-## Usage
-
-```js
-const gulp = require('gulp');
-const tar = require('gulp-tar');
-const gzip = require('gulp-gzip');
-
-gulp.task('default', () =>
- gulp.src('src/*')
- .pipe(tar('archive.tar'))
- .pipe(gzip())
- .pipe(gulp.dest('dist'))
-);
-```
-
-
-## API
-
-### tar(filename, [options])
-
-#### filename
-
-Type: `string`
-
-Filename for the output tar archive.
-
-#### options
-
-Type: `Object`
-
-Default options passed to [Archiver](https://github.com/archiverjs/node-archiver)'s [constructor](https://archiverjs.com/docs/Archiver.html) and merged into the [data](https://archiverjs.com/docs/global.html#TarEntryData) passed to its [`append`](https://archiverjs.com/docs/Archiver.html#append) method.
-
-
-## License
-
-MIT © [Sindre Sorhus](https://sindresorhus.com)