forked from yarnpkg/yarn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
43 lines (36 loc) · 1.16 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
'use strict';
const argv = require('yargs').argv;
const plumber = require('gulp-plumber');
const newer = require('gulp-newer');
const babel = require('gulp-babel');
const sourcemaps = require('gulp-sourcemaps');
const watch = require('gulp-watch');
const gutil = require('gulp-util');
const gulpif = require('gulp-if');
const gulp = require('gulp');
const path = require('path');
const fs = require('fs');
const babelRc = JSON.parse(fs.readFileSync(path.join(__dirname, '.babelrc'), 'utf8'));
const ver = process.versions.node;
const majorVer = parseInt(ver.split('.')[0], 10);
const build = (lib, opts) =>
gulp.src('src/**/*.js')
.pipe(plumber({
errorHandler(err) {
gutil.log(err.stack);
},
}))
.pipe(newer(lib))
.pipe(gulpif(argv.sourcemaps, sourcemaps.init()))
.pipe(babel(opts))
.pipe(gulpif(argv.sourcemaps, sourcemaps.write('.', {sourceRoot: '../src'})))
.pipe(gulp.dest(lib));
gulp.task('default', ['build']);
gulp.task('build', () =>
build('lib', babelRc.env[majorVer >= 5 ? 'node5' : 'pre-node5'])
);
gulp.task('watch', ['build'], () => {
watch('src/**/*', () => {
gulp.start('build');
});
});