Skip to content

Commit d8154ab

Browse files
chore(internal): fix tests not always being type checked (#19)
1 parent acdbd5d commit d8154ab

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/lint

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ echo "==> Running eslint"
88
./node_modules/.bin/eslint .
99

1010
echo "==> Building"
11-
./scripts/build # also checks types
11+
./scripts/build
12+
13+
echo "==> Checking types"
14+
./node_modules/typescript/bin/tsc
1215

1316
echo "==> Running Are The Types Wrong?"
1417
./node_modules/.bin/attw --pack dist -f json >.attw.json || true

0 commit comments

Comments
 (0)