All Projects β†’ sindresorhus β†’ Gulp Tar

sindresorhus / Gulp Tar

Licence: mit
Create tarball from files

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Gulp Tar

PLzmaSDK
PLzmaSDK is (Portable, Patched, Package, cross-P-latform) Lzma SDK.
Stars: ✭ 28 (+0%)
Mutual labels:  tar, compress
QArchive
Async C++ Cross-Platform library that modernizes libarchive using Qt5 πŸš€. Simply extracts 7z πŸ”, Tarballs 🎱 and other supported formats by libarchive. ❀️
Stars: ✭ 66 (+135.71%)
Mutual labels:  tar, compress
Decompress
Extracting archives made easy
Stars: ✭ 316 (+1028.57%)
Mutual labels:  tar
Maven Min Plugin
πŸ“¦ Latke application JavaScript and CSS files compression.
Stars: ✭ 5 (-82.14%)
Mutual labels:  compress
Ugrep
πŸ”NEW ugrep v3.1: ultra fast grep with interactive query UI and fuzzy search: search file systems, source code, text, binary files, archives (cpio/tar/pax/zip), compressed files (gz/Z/bz2/lzma/xz/lz4), documents and more. A faster, user-friendly and compatible grep replacement.
Stars: ✭ 626 (+2135.71%)
Mutual labels:  tar
Gulp Mocha
Run Mocha tests
Stars: ✭ 374 (+1235.71%)
Mutual labels:  gulp-plugin
Leanify
lightweight lossless file minifier/optimizer
Stars: ✭ 694 (+2378.57%)
Mutual labels:  tar
Gulp Filter
Filter files in a `vinyl` stream
Stars: ✭ 308 (+1000%)
Mutual labels:  gulp-plugin
Gulp Jsonlint
πŸ” jsonlint plugin for Gulp
Stars: ✭ 26 (-7.14%)
Mutual labels:  gulp-plugin
Gulp Gh Pages
A gulp 4 plugin to publish contents to Github pages
Stars: ✭ 611 (+2082.14%)
Mutual labels:  gulp-plugin
Gulp Postcss
Pipe CSS through PostCSS processors with a single parse
Stars: ✭ 749 (+2575%)
Mutual labels:  gulp-plugin
Gulp Angular Templatecache
Concatenates and registers AngularJS templates in the $templateCache.
Stars: ✭ 530 (+1792.86%)
Mutual labels:  gulp-plugin
Gulp Shell
A handy command line interface for gulp
Stars: ✭ 474 (+1592.86%)
Mutual labels:  gulp-plugin
Gulp Useref
Parse build blocks in HTML files to replace references to non-optimized scripts or stylesheets.
Stars: ✭ 720 (+2471.43%)
Mutual labels:  gulp-plugin
Flutter image compress
flutter image compress
Stars: ✭ 348 (+1142.86%)
Mutual labels:  compress
Casync
Content-Addressable Data Synchronization Tool
Stars: ✭ 890 (+3078.57%)
Mutual labels:  tar
Archiver
Easily create & extract archives, and compress & decompress files of various formats
Stars: ✭ 3,373 (+11946.43%)
Mutual labels:  tar
Gulp Pug
Gulp plugin for compiling Pug templates
Stars: ✭ 512 (+1728.57%)
Mutual labels:  gulp-plugin
Gulp Autoprefixer
Prefix CSS
Stars: ✭ 676 (+2314.29%)
Mutual labels:  gulp-plugin
Mcimage
Android Gradle Plugin -- Auto Check big image and compress image in building.
Stars: ✭ 872 (+3014.29%)
Mutual labels:  compress

gulp-tar

Create tarball from files

Install

$ npm install --save-dev gulp-tar

Usage

const gulp = require('gulp');
const tar = require('gulp-tar');
const gzip = require('gulp-gzip');

exports.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's constructor and merged into the data passed to its append method.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].