UNPKG

thread-pool

Version:

Simple thread pooling for Node.js.

11 lines (9 loc) 238 B
import gulp from 'gulp'; import gutil from 'gulp-util'; import sequence from 'run-sequence'; import babel from 'gulp-babel'; gulp.task('build', () => { return gulp.src('src/**/*.js') .pipe(babel()) .pipe(gulp.dest('bin')); });