# gulp-exit

> Terminates gulp task.

Latest version **0.0.2** (published 2014-03-29) · MIT license · 0 weekly downloads

## Install

```sh
npm install gulp-exit
pnpm add gulp-exit
yarn add gulp-exit
bun add gulp-exit
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2014-03-29 |
| First published | 2014-03-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 20 |
| Author | Adam Babik |
| Maintainers | dreame4 |
| Keywords | gulp, gulpplugin, exit, terminate |

## Links

- npm: https://www.npmjs.com/package/gulp-exit
- Repository: https://github.com/dreame4/gulp-exit
- Issues: https://github.com/dreame4/gulp-exit/issues
- npm.io page: https://npm.io/package/gulp-exit

## Recent versions

- 0.0.2 (latest) — 2014-03-29
- 0.0.1 — 2014-03-29

## README

gulp-exit
=========

`gulp-exit` ensures that the task is terminated after finishing.

Some plugins, like [gulp-mocha](https://github.com/sindresorhus/gulp-mocha), have problems with a proper termination after finishing the task. This plugin guarantees that the task will exit successfully.

### Example

```javascript
var mocha = require('gulp-mocha'),
    exit = require('gulp-exit');

gulp.src('test.js')
  .pipe(mocha({
    reporter: 'dot',
    ui: 'bdd',
    growl: true,
    timeout: 2000,
    useColors: true,
    useInlineDiffs: true
  }))
  .pipe(exit());
```

---
_Source: https://npm.io/package/gulp-exit · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
