Skip to content

Commit 478c490

Browse files
committed
Add basic make check target that runs tsc
1 parent d1e94e4 commit 478c490

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ release-patch release-minor release-major: release-%: dist types
4040
TAG=$$(git describe --tags --abbrev=0); gh release create $$TAG && gh release upload $$TAG dist/*.bundle.*
4141
npm publish
4242

43+
check: node_modules
44+
node_modules/.bin/tsc --noEmit
45+
4346
clean:
4447
rm -rf dist node_modules
4548

46-
.PHONY: build dist types watch clean
49+
.PHONY: build dist types watch check clean

0 commit comments

Comments
 (0)