forked from yarnpkg/yarn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
44 lines (36 loc) · 1.01 KB
/
gulpfile.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
'use strict';
const plumber = require('gulp-plumber');
const stream = require('stream');
const chalk = require('chalk');
const newer = require('gulp-newer');
const babel = require('gulp-babel');
const watch = require('gulp-watch');
const gutil = require('gulp-util');
const gulp = require('gulp');
const path = require('path');
const fs = require('fs');
const babelRc = JSON.parse(fs.readFileSync(path.join(__dirname, '.babelrc'), 'utf8'));
function build(lib, opts) {
return gulp.src('src/**/*')
.pipe(plumber({
errorHandler(err) {
gutil.log(err.stack);
},
}))
.pipe(newer(lib))
.pipe(babel(opts))
.pipe(gulp.dest(lib));
}
gulp.task('default', ['build']);
gulp.task('build', ['build-modern', 'build-legacy']);
gulp.task('build-modern', () => {
return build('lib', babelRc.env.node5);
});
gulp.task('build-legacy', () => {
return build('lib-legacy', babelRc.env['pre-node5']);
});
gulp.task('watch', ['build'], () => {
watch('src/**/*', () => {
gulp.start('build');
});
});