UNPKG

queryfilters

Version:
22 lines (18 loc) 425 B
var gulp = require('gulp'); var minify = require('gulp-minify'); var shell = require('gulp-shell') gulp.task('default', ['compress'], function() { // ... }); gulp.task('test', function() { gulp.src('lib/*.js'). pipe(shell([ 'clear', 'npm test' ])); }); gulp.task('compress', function() { gulp.src('lib/*.js') .pipe(minify()) .pipe(gulp.dest('dist')) });