0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
vendor
/
jquery
/
plugins
/
form
/
[
Home
]
File: gulpfile.js
/* buildfile for jquery.form plugin */ var gulp = require('gulp'), concat = require('gulp-concat'), jshint = require('gulp-jshint'), uglify = require('gulp-uglify'); gulp.task('default', function() { gulp.src(['jquery.form.js']) .pipe(jshint()) .pipe(jshint.reporter('default')) .pipe(uglify({ preserveComments: 'some' })) .pipe(concat('jquery.form.min.js')) .pipe(gulp.dest('.')); }); gulp.task('watch', function () { gulp.watch('jquery.form.js', ['default']); });