-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathgulpfile.js
85 lines (76 loc) · 1.88 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
const gulp = require('gulp');
const babel = require('gulp-babel');
const ts = require('gulp-typescript');
const del = require('del');
const yargs = require('yargs');
const argv = yargs(process.argv.slice(2)).alias('isolatedModules', 'iso').argv;
const isWatch = argv.w;
const isSkipTS = argv.skip;
const isolatedModules = argv.iso;
gulp.task('clean', async function () {
await del('lib/**');
await del('es/**');
});
gulp.task('cjs', function () {
const tsConfig = {
module: 'CommonJS',
};
if (isolatedModules) {
tsConfig.isolatedModules = true;
}
const tsProject = ts.createProject('tsconfig.json', tsConfig);
return tsProject
.src()
.pipe(tsProject())
.pipe(
babel({
configFile: '../../.babelrc',
}),
)
.pipe(gulp.dest('lib/'));
});
gulp.task('es', function () {
const tsConfig = {
module: 'ESNext',
};
if (isolatedModules) {
tsConfig.isolatedModules = true;
}
const tsProject = ts.createProject('tsconfig.json', tsConfig);
return tsProject
.src()
.pipe(tsProject())
.pipe(
babel({
configFile: '../../.babelrc',
}),
)
.pipe(gulp.dest('es/'));
});
gulp.task('declaration', function () {
const tsConfig = {
declaration: true,
emitDeclarationOnly: true,
};
const tsProject = ts.createProject('tsconfig.json', tsConfig);
return tsProject
.src()
.pipe(tsProject())
.pipe(gulp.dest('es/'))
.pipe(gulp.dest('lib/'));
});
gulp.task('watch', function () {
const tasks = ['cjs', 'es'];
if (!isSkipTS) {
tasks.push('declaration');
}
gulp.watch(
['src/*', 'src/*/*', 'src/*/*/*'],
{ events: 'all', delay: 200, ignoreInitial: false, depth: 5 },
gulp.series(...tasks),
);
});
exports.watchSeries = gulp.series('cjs', 'es', 'declaration');
exports.default = isWatch
? gulp.series('watch')
: gulp.series('clean', 'cjs', 'es', 'declaration');