Skip to content

Commit 400908c

Browse files
mads-hartmannroboquat
authored andcommitted
Add more information to slice
1 parent 15a8d15 commit 400908c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.werft/jobs/build/typecheck-werft-jobs.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ import { exec } from "../../util/shell";
77
*/
88
export async function typecheckWerftJobs(werft: Werft) {
99
werft.phase("Typecheck Typescript Werft files", "Typechecking Werft Typescript files");
10-
const slice = "tsc";
10+
const slice = "tsc --noEmit";
1111
try {
1212
exec("cd .werft && tsc --noEmit", { slice });
13+
werft.log(slice, 'No compilation errors.')
1314
} catch (e) {
1415
werft.fail(slice, e);
1516
}

0 commit comments

Comments
 (0)