Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alexsedeke/gulp-clip-empty-files

Gulp plugin for clipping empty files from stream.
https://github.com/alexsedeke/gulp-clip-empty-files

Last synced: 2 months ago
JSON representation

Gulp plugin for clipping empty files from stream.

Awesome Lists containing this project

README

        

# [gulp](https://github.com/wearefractal/gulp)-clip-empty-files [![Build Status](https://travis-ci.org/nahody/gulp-clip-empty-files.svg?branch=master)](https://travis-ci.org/nahody/gulp-clip-empty-files)

> Remove empty files from stream. This prevent errors on some other plugins like gulp-sass and can be usefull removing placeholders.

## Install

```sh
$ npm install --save-dev gulp-clip-empty-files
```

## Usage

```js
var gulp = require('gulp');
var clip = require('gulp-clip-empty-files');

gulp.task('default', function () {
return gulp.src('src/*.scss')
.pipe(clip())
.pipe(gulp.dest('dist'));
});
```

## Options

No options available.