-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
54 lines (48 loc) · 1.24 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
const gulp = require('gulp');
const babel = require('gulp-babel');
const ts = require('gulp-typescript');
const del = require('del');
gulp.task('clean', async function () {
await del('lib/**');
await del('es/**');
await del('dist/**');
});
gulp.task('cjs', function () {
const tsProject = ts.createProject('tsconfig.json', {
module: 'CommonJS',
});
return tsProject
.src()
.pipe(tsProject())
.pipe(
babel({
configFile: '../../.babelrc',
}),
)
.pipe(gulp.dest('lib/'));
});
gulp.task('es', function () {
const tsProject = ts.createProject('tsconfig.json', {
module: 'ESNext',
});
return tsProject
.src()
.pipe(tsProject())
.pipe(
babel({
configFile: '../../.babelrc',
}),
)
.pipe(gulp.dest('es/'));
});
gulp.task('declaration', function () {
const tsProject = ts.createProject('tsconfig.json', {
declaration: true,
emitDeclarationOnly: true,
});
return tsProject.src().pipe(tsProject()).pipe(gulp.dest('es/')).pipe(gulp.dest('lib/'));
});
gulp.task('copyReadme', async function () {
await gulp.src('../../README.md').pipe(gulp.dest('../../packages/hooks'));
});
exports.default = gulp.series('clean', 'cjs', 'es', 'declaration', 'copyReadme');