forked from babel/minify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.babel.js
47 lines (41 loc) · 1.13 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
const through = require("through2");
const chalk = require("chalk");
const newer = require("gulp-newer");
const babel = require("gulp-babel");
const gutil = require("gulp-util");
const gulp = require("gulp");
const path = require("path");
const scripts = "./packages/*/src/**/*.js";
const dest = "packages";
let srcEx, libFragment;
if (path.win32 === path) {
srcEx = /(packages\\[^\\]+)\\src\\/;
libFragment = "$1\\lib\\";
} else {
srcEx = new RegExp("(packages/[^/]+)/src/");
libFragment = "$1/lib/";
}
export function build() {
return gulp
.src(scripts)
.pipe(
through.obj((file, enc, callback) => {
file._path = file.path;
file.path = file.path.replace(srcEx, libFragment);
callback(null, file);
})
)
.pipe(newer(dest))
.pipe(
through.obj((file, enc, callback) => {
gutil.log("Compiling", "'" + chalk.cyan(file._path) + "'...");
callback(null, file);
})
)
.pipe(babel())
.pipe(gulp.dest(dest));
}
export const watch = gulp.series(build, () => {
gulp.watch(scripts, { debounceDelay: 200 }, build).on("error", () => {});
});
export default build;