diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2019-01-29 16:13:11 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2019-01-29 17:10:16 +0900 |
| commit | 7850d68dc21b7f86c7bd49f9cd48e4fac51e2d4d (patch) | |
| tree | 741c230ddf9773091237cc5ca94127cdd87d66e8 /gulpfile.ts | |
| parent | Upgrade gulp version to 4.0.0 (diff) | |
| download | sharkey-7850d68dc21b7f86c7bd49f9cd48e4fac51e2d4d.tar.gz sharkey-7850d68dc21b7f86c7bd49f9cd48e4fac51e2d4d.tar.bz2 sharkey-7850d68dc21b7f86c7bd49f9cd48e4fac51e2d4d.zip | |
Prevent typescript errors from crashing
Diffstat (limited to 'gulpfile.ts')
| -rw-r--r-- | gulpfile.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gulpfile.ts b/gulpfile.ts index 08175914a1..64ed042246 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -47,6 +47,7 @@ gulp.task('build:ts', () => { .src() .pipe(sourcemaps.init()) .pipe(tsProject()) + .on('error', () => {}) .pipe(sourcemaps.write('.', { includeContent: false, sourceRoot: '../built' })) .pipe(gulp.dest('./built/')); }); |