We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a9d4cf commit f049ddcCopy full SHA for f049ddc
1 file changed
gulpfile.js
@@ -26,7 +26,7 @@ gulp.task('compileCore', (done) => {
26
.then(() => done())
27
.catch((ex) => {
28
console.log(ex);
29
- done(new Error(`TypeScript compilation errors: ${ex}`));
+ done(new Error(`TypeScript compilation errors: ${ex instanceof Error ? ex.message : ex}`));
30
});
31
32
0 commit comments