This repository has been archived by the owner on Jul 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.ts
78 lines (63 loc) · 1.44 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
import * as gulp from 'gulp';
import * as runSequence from 'run-sequence';
import {ENV, PATH} from './tools/config';
import {
autoRegisterTasks,
registerInjectableAssetsRef,
task
} from './tools/utils';
// --------------
// Configuration.
autoRegisterTasks();
registerInjectableAssetsRef(PATH.src[ENV].jslib_inject, PATH.dest[ENV].lib);
registerInjectableAssetsRef(PATH.src[ENV].csslib, PATH.dest[ENV].css);
// --------------
// Clean (override).
gulp.task('clean', task('clean', 'all'));
gulp.task('clean.dist', task('clean', 'dist'));
gulp.task('clean.test', task('clean', 'test'));
// --------------
// Postinstall.
gulp.task('postinstall', done =>
runSequence('clean',
'npm',
done));
// --------------
// Build dev.
gulp.task('build', done=>
runSequence(`build.${ENV}`, done)
);
gulp.task('build', done =>
runSequence('clean.dist',
//'tslint',
'build.jslib',
'build.sass',
'build.res',
`build.js.${ENV}`,
'build.csslib',
'build.fonts',
'build.index',
done));
gulp.task('build.watch', done =>
runSequence('build',
'watch',
done));
gulp.task('build.test.watch', done =>
runSequence('build.test',
'watch.test',
done));
// --------------
// Test.
gulp.task('test', done =>
runSequence('clean.test',
'tslint',
'build.test',
'karma.start',
done));
// --------------
// Serve.
gulp.task('serve', done =>
runSequence('build',
'server.start',
'watch.serve',
done));