Skip to content

adambabik/gulp-exit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-exit

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

Some plugins, like gulp-mocha, have problems with a proper termination after finishing the task. This plugin guarantees that the task will exit successfully.

Example

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());

About

Terminates gulp task.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published