generated from T99/ts-module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
151 lines (102 loc) · 3 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/*
* Created by Trevor Sears <trevor@trevorsears.com> (https://trevorsears.com/).
* 8:48 PM -- June 16th, 2019.
* Project: @jsdsl/collections
*
* @jsdsl/collections - A set of interfaces, abstract classes, and types that seek to describe most basic data
* structures.
* Copyright (C) 2021 Trevor Sears
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
const gulp = require("gulp");
const typescript = require("gulp-typescript");
const sourcemaps = require("gulp-sourcemaps");
const uglify = require("gulp-uglify-es").default;
const del = require("del");
const paths = {
typescript: {
dir: "ts/",
allFiles: "ts/**/*.ts",
tsconfig: "ts/tsconfig.json"
},
javascript: {
dir: "js/",
allFiles: "js/**/*.js",
entryPoint: "js/main.js",
entryPointFileName: "main.js"
},
typedefs: {
dir: ".d.ts/",
allFiles: ".d.ts/**/*.d.ts"
}
};
let typescriptProject = typescript.createProject(paths.typescript.tsconfig);
// The default Gulp task.
gulp.task("default", defaultTask);
// Cleans (deletes) all generated/compiled files.
gulp.task("clean", clean);
// Builds the entire project.
gulp.task("build", build);
// Cleans and builds the entire project.
gulp.task("rebuild", rebuild);
// Watch for changes to relevant files and compile-on-change.
gulp.task("watch", watch);
function defaultTask(done) {
return rebuild(done);
}
function clean(done) {
return del([
paths.javascript.dir,
paths.typedefs.dir
]);
}
function build(done) {
return buildJavaScriptPipeline(done);
}
function rebuild(done) {
gulp.series(clean, build)(done);
}
function buildJavaScriptPipeline(done) {
return gulp.series(
compileTypeScript,
uglifyJavaScript
)(done);
}
function compileTypeScript(done) {
let proj =
typescriptProject.src()
.pipe(sourcemaps.init())
.pipe(typescriptProject());
let compileJS = (done) => {
return proj.js
.pipe(sourcemaps.write("."))
.pipe(gulp.dest(paths.javascript.dir));
};
let compileDTS = (done) => {
return proj.dts
.pipe(gulp.dest(paths.typedefs.dir));
};
return gulp.parallel(compileJS, compileDTS)(done);
}
function uglifyJavaScript(done) {
return gulp.src(paths.javascript.allFiles)
.pipe(sourcemaps.init({ loadMaps: true }))
.pipe(uglify())
.pipe(sourcemaps.write("."))
.pipe(gulp.dest(paths.javascript.dir));
}
function watch(done) {
gulp.watch([paths.typescript.allFiles], buildJavaScriptPipeline);
}