-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.ts
153 lines (133 loc) · 3.61 KB
/
gulpfile.ts
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
152
153
import * as gulp from 'gulp';
import * as util from 'gulp-util';
import * as runSequence from 'run-sequence';
import Config from './tools/config';
import { loadTasks } from './tools/utils';
loadTasks(Config.BASE_TASKS_DIR);
loadTasks(Config.PROJECT_TASKS_DIR);
// --------------
// Build dev.
gulp.task('build.dev', (done: any) =>
runSequence(//'clean.dev',
// 'tslint',
// 'css-lint',
'build.assets.dev',
'build.pug_scss',
'build.js.dev',
'build.index.dev',
done));
// --------------
// Build dev watch.
gulp.task('build.dev.watch', (done: any) =>
runSequence('build.dev',
'watch.dev',
done));
// --------------
// Build e2e.
gulp.task('build.e2e', (done: any) =>
runSequence('clean.dev',
'tslint',
'build.assets.dev',
'build.js.e2e',
'build.index.dev',
done));
// --------------
// Build prod.
gulp.task('build.prod', (done: any) =>
runSequence('clean.prod',
'tslint',
'css-lint',
'build.assets.prod',
'build.pug_scss',
'copy.prod',
'build.js.prod',
'build.bundles',
'build.bundles.app',
'minify.bundles',
'build.index.prod',
done));
// --------------
// Build prod.
gulp.task('build.prod.exp', (done: any) =>
runSequence('clean.prod',
'tslint',
'css-lint',
'build.assets.prod',
'build.pug_scss',
'copy.prod',
'compile.ahead.prod',
'build.js.prod.exp',
'build.bundles',
'build.bundles.app.exp',
'minify.bundles',
'build.index.prod',
done));
// --------------
// Build test.
gulp.task('build.test', (done: any) =>
runSequence('clean.once',
'tslint',
'build.assets.dev',
'build.pug_scss',
'build.js.dev',
'build.js.test',
'build.index.dev',
done));
// --------------
// Build test watch.
gulp.task('test.watch', (done: any) =>
runSequence('build.test',
'watch.test',
'karma.watch',
done));
// --------------
// Build tools.
gulp.task('build.tools', (done: any) =>
runSequence('clean.tools',
'build.js.tools',
done));
// --------------
// Docs
// gulp.task('docs', (done: any) =>
// runSequence('build.docs',
// 'serve.docs',
// done));
// --------------
// Serve dev
gulp.task('serve.dev', (done: any) =>
runSequence('build.dev',
'server.start',
'watch.dev',
done));
// --------------
// Serve e2e
gulp.task('serve.e2e', (done: any) =>
runSequence('build.e2e',
'server.start',
'watch.e2e',
done));
// --------------
// Serve prod
gulp.task('serve.prod', (done: any) =>
runSequence('build.prod',
'server.prod',
done));
// --------------
// Test.
gulp.task('test', (done: any) =>
runSequence('build.test',
'karma.run',
done));
// --------------
// Clean dev/coverage that will only run once
// this prevents karma watchers from being broken when directories are deleted
let firstRun = true;
gulp.task('clean.once', (done: any) => {
if (firstRun) {
firstRun = false;
runSequence('clean.dev', 'clean.coverage', done);
} else {
util.log('Skipping clean on rebuild');
done();
}
});