Make it easier to run NPM tests locally

This commit is contained in:
daz 2025-01-23 12:07:37 -07:00
parent 8790d96bb8
commit 74f9fa840c
No known key found for this signature in database

4
build
View file

@ -36,6 +36,10 @@ case "$1" in
npm clean-install
npm run build
;;
test)
shift
npm test -- $@
;;
*)
npm run build
;;