Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/alexsedeke/gulp-clip-empty-files
- Owner: alexsedeke
- License: mit
- Created: 2014-06-25T08:07:44.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-08T09:40:59.000Z (almost 9 years ago)
- Last Synced: 2024-11-03T03:39:15.434Z (2 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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.