UNPKG
thread-pool
Version:
latest (0.0.1)
0.0.1
Simple thread pooling for Node.js.
github.com/jgnewman/thread-pool
jgnewman/thread-pool
thread-pool
/
gulpfile.babel.js
11 lines
(9 loc)
•
238 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
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'
)); });