-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
54 lines (34 loc) · 931 Bytes
/
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 {src, dest, task, series} = require("gulp");
const ts = require("gulp-typescript");
const tsProject = ts.createProject("tsconfig.json");
const minify = require("gulp-minify");
const clean = require("gulp-clean");
/*
* Compiles the typescript code into javascript.
*/
task("compile", () => {
return tsProject.src().pipe(tsProject()).js.pipe(dest("dist"));
});
/*
* Compresses the javascript code.
*/
task("compress", () => {
return src(["dist/**/*.js"])
.pipe(minify({
ext:{
src:"-debug.js",
min:".js"
}
}))
.pipe(dest("dist"))
});
/**
* Deletes the dist directory so the new code can be introduced.
*/
task("cleanDist", () => {
return src("dist", {allowEmpty: true}).pipe(clean({force: true}));
});
/**
* Default Task: Clean, Compile & Compress
*/
exports.default = series("cleanDist", "compile", "compress");