UNPKG

com.peerio.cordova.plugin.open

Version:

Open audio, video, images and more with applications installed on the user's device

19 lines (15 loc) 315 B
var gulp = require('gulp'); var eslint = require('gulp-eslint'); var src = [ './gulpfile.js', './www/*.js', './tests/tests.js' ]; gulp.task('lint', function () { return gulp.src(src) .pipe(eslint()) .pipe(eslint.format()); }); gulp.task('watch', function() { gulp.watch(src, ['lint']); });