spider/gulpfile.babel.js
2019-05-28 16:53:34 +08:00

10 lines
196 B
JavaScript

'use strict';
import gulp from 'gulp';
import babel from 'gulp-babel';
gulp.task('default', () => {
return gulp.src('src/**/*.js')
.pipe(babel())
.pipe(gulp.dest('lib'));
});