Skip to content

Commit

Permalink
Merge pull request #116 from Rastamanby/fix/typings-error
Browse files Browse the repository at this point in the history
fix(gulp-tasks): добавляет игнор ошибок для TS
  • Loading branch information
Heymdall committed Aug 27, 2020
2 parents 4d3adf0 + 8614875 commit a941f86
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gulp-tasks.js
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 a941f86

Please sign in to comment.