-
Notifications
You must be signed in to change notification settings - Fork 2
/
gulpfile.js
116 lines (101 loc) · 2.01 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
'use strict';
const gulp = require('gulp');
const rimraf = require('gulp-rimraf');
const tslint = require('gulp-tslint');
const lab = require('gulp-lab');
const shell = require('gulp-shell');
const env = require('gulp-env');
const runSequence = require('run-sequence');
const fs = require('fs');
/**
* Remove build directory.
*/
gulp.task('clean', function () {
return gulp.src(outDir, { read: false })
.pipe(rimraf());
});
/**
* Lint all custom TypeScript files.
*/
gulp.task('tslint', () => {
return gulp.src('src/**/*.ts')
.pipe(tslint( {
formatter: 'prose'
}))
.pipe(tslint.report());
});
/**
* Compile TypeScript.
*/
function compileTS(args, cb) {
return exec(tscCmd + args, (err, stdout, stderr) => {
console.log(stdout);
if (stderr) {
console.log(stderr);
}
cb(err);
});
}
gulp.task('compile', shell.task([
'npm run tsc',
]));
/**
* Watch for changes in TypeScript
*/
gulp.task('watch', shell.task([
'npm run tsc-watch',
]));
/**
* Copy config files
*/
gulp.task('configs', (cb) => {
const envFile = '.env.json';
if(fs.existsSync(envFile)) {
env({
file: envFile
});
}
if(process.env.SOLCAST_API_KEY) {
env.set({
SOLCAST_API_KEY: process.env.SOLCAST_API_KEY
});
}
return gulp.src("src/configurations/*.json")
.pipe(gulp.dest('./dist/src/configurations'));
});
/**
* Build the project.
*/
gulp.task('build', (callbackFn) => {
console.log('Building the project ...');
runSequence('tslint',
'compile',
'configs',
callbackFn
);
});
/**
* Run tests.
*/
gulp.task('test', ['build'], (cb) => {
const envs = env.set({
NODE_ENV: 'test'
});
const labOptions = {
args: '-D -R -S -l -v',
opts: {
emitLabError: true
}
};
gulp.src(['dist/test/**/*.js'])
.pipe(envs)
.pipe(lab(labOptions))
.once('error', (error) => {
console.log(error);
process.exit(1);
})
.once('end', () => {
process.exit();
});
});
gulp.task('default', ['build']);