Skip to content

Commit ffbcd7b

Browse files
committed
fix(build): TypeScript compiler errors were not being shown or caught
1 parent 3eda9bb commit ffbcd7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/transpile.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ glib-compile-schemas schemas &
2121

2222
for proj in ${PROJECTS}; do
2323
mkdir -p _build/${proj}
24-
tsc --p src/${proj} &
24+
tsc --p src/${proj}
2525
done
2626

2727
tsc &
@@ -34,7 +34,7 @@ cp -r metadata.json icons schemas *.css _build &
3434

3535
for src in $(find target -name '*.js'); do
3636
dest=$(echo $src | sed s#target#_build#g)
37-
transpile &
37+
transpile
3838
done
3939

4040
wait

0 commit comments

Comments
 (0)