-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.babel.js
49 lines (46 loc) · 1.16 KB
/
gulpfile.babel.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* Created by chengyuan on 2017/3/14.
*/
import gulp from 'gulp';
import watch from 'gulp-watch';
import babel from 'gulp-babel';
gulp.task('transform', () => {
return gulp.src('src/**/*.js')
.pipe(babel({
presets: ['es2015', 'es2016', 'es2017'],
plugins: [
[
"transform-runtime", {
"polyfill": false,
"regenerator": true
}
]
]
}))
.on('error', function(err){
console.log(err.stack);
this.emit('end');
})
.pipe(gulp.dest('lib'));
});
gulp.task('watch', () => {
return gulp.src('src/**/*.js')
.pipe(watch('src/**/*.js', {
verbose: true
}))
.pipe(babel({
presets: ['es2015', 'es2016', 'es2017'],
plugins: [
[
"transform-runtime", {
"polyfill": false,
"regenerator": true
}
]
]
}))
.pipe(gulp.dest('lib'));
});
gulp.task('default', () => {
gulp.start('transform');
});