You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -48,7 +56,20 @@ export async function runBuildRefsCli() {
48
56
awaitoutputCache.initCaches();
49
57
}
50
58
51
-
awaitbuildAllTsRefs(log);
59
+
try{
60
+
awaitbuildAllTsRefs(log);
61
+
log.success('ts refs build successfully');
62
+
}catch(error){
63
+
consttypeFailure=isTypeFailure(error);
64
+
65
+
if(flags['ignore-type-failures']&&typeFailure){
66
+
log.warning(
67
+
'tsc reported type errors but we are ignoring them for now, to see them please run `node scripts/type_check` or `node scripts/build_ts_refs` without the `--ignore-type-failures` flag.'
0 commit comments