You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WeChat/node_modules/tiny-cookie/gulpfile.js

12 lines
314 B

var gulp = require('gulp');
var plugins = require('gulp-load-plugins')();
gulp.task('default', function() {
gulp.src('tiny-cookie.js')
.pipe(plugins.jshint())
.pipe(plugins.jshint.reporter('default'))
.pipe(plugins.uglify())
.pipe(plugins.rename({suffix: '.min'}))
.pipe(gulp.dest('.'))
});