Skip to content

Commit

Permalink
fix(gulp-tasks): добавляет игнор ошибок для TS, ts.reporter почему-то…
Browse files Browse the repository at this point in the history
… не работает
  • Loading branch information
Vanya Korobeynikov authored and Vanya Korobeynikov committed Jun 23, 2020
1 parent 4d3adf0 commit 8614875
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gulp-tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ function createTasks(packageName, options = {}) {
.replace(/\.tsx?$/, '.d.ts')
)))
.pipe(ts(tsOptions, ts.reporter.nullReporter())) // ignore all errors at compile time
.on('error', () => {}) // ignore all errors at compile time gulp 3 compatible
.dts.pipe(gulp.dest(options.publishDir));
}));

Expand Down

0 comments on commit 8614875

Please sign in to comment.