From 2fe128cfdb137de4c49a3e62505e1625246d1f62 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 19 Sep 2020 16:32:35 -0400 Subject: [PATCH] Use `npx tsc` instead of $PATH-based `tsc` in build.sh. --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 45f228a..96d024d 100755 --- a/build.sh +++ b/build.sh @@ -12,8 +12,8 @@ set -ex rm -rf $OUTDIR # Compile. -tsc --version -tsc +npx tsc --version +npx tsc # Drop tests from the compiled output. find $OUTDIR -type f -name '*.test.*' -exec rm {} + -- 2.22.5