-
Notifications
You must be signed in to change notification settings - Fork 30
/
gulpfile.ts
176 lines (153 loc) · 4.25 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
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.SEED_TASKS_DIR);
loadTasks(Config.PROJECT_TASKS_DIR);
// --------------
// Build dev.
gulp.task('build.dev', (done: any) =>
runSequence(//'clean.dev',
'tslint',
'build.assets.dev',
'build.fonts',
'build.monaco',
'build.html_css',
'build.js.dev',
'build.index.dev',
'build.templatelocals',
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.fonts',
'build.monaco',
'build.js.e2e',
'build.index.dev',
'build.templatelocals',
done));
// --------------
// Build prod.
gulp.task('build.prod', (done: any) =>
runSequence('check.tools',
'clean.prod',
'tslint',
'build.assets.prod',
'build.fonts',
'build.monaco',
'build.html_css',
'copy.prod',
'build.js.prod',
'build.bundles',
'build.bundles.app',
'minify.bundles',
'build.index.prod',
'build.templatelocals',
done));
// --------------
// Build prod.
gulp.task('build.prod.exp', (done: any) =>
runSequence('check.tools',
'clean.prod',
'tslint',
'build.assets.prod',
'build.fonts',
'build.monaco',
'build.html_css',
'copy.prod',
'compile.ahead.prod',
'build.js.prod.exp',
'build.bundles',
'build.bundles.app.exp',
'minify.bundles',
'build.index.prod',
'build.templatelocals',
done));
// --------------
// Build test.
gulp.task('build.test', (done: any) =>
runSequence('clean.once',
'tslint',
'build.assets.dev',
'build.fonts',
'build.monaco',
'build.html_css',
'build.js.dev',
'build.js.test',
'build.index.dev',
'build.templatelocals',
done));
// --------------
// Build test watch.
gulp.task('test.watch', (done: any) =>
runSequence('build.test',
'watch.test',
'karma.watch',
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));
// --------------
// Serve prod exp
gulp.task('serve.prod.exp', (done: any) =>
runSequence('build.prod.exp',
'server.prod',
done));
// --------------
// Test.
gulp.task('test', (done: any) =>
runSequence('build.test',
'karma.run',
done));
// --------------
// Clean directories after i18n
// TODO: find a better way to do it
gulp.task('clean.i18n', (done: any) =>
runSequence('clear.files',
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('check.tools', 'clean.dev', 'clean.coverage', done);
} else {
util.log('Skipping clean on rebuild');
done();
}
});