File: /home/cursos.ril.es/node_modules/laravel-elixir/node_modules/gulp-shell/gulpfile.js
var gulp = require('gulp')
var shell = require('./')
var paths = {
js: ['*.js', 'test/*.js']
}
gulp.task('test', shell.task('mocha -c'))
gulp.task('coverage', ['test'], shell.task('istanbul cover _mocha -- -c'))
gulp.task('coveralls', ['coverage'], shell.task('cat coverage/lcov.info | coveralls'))
gulp.task('lint', shell.task('eslint ' + paths.js.join(' ')))
gulp.task('default', ['coverage', 'lint'])
gulp.task('watch', function () {
gulp.watch(paths.js, ['default'])
})