code-katas/typescript/fizzbuzz/justfile

15 lines
146 B
Makefile
Raw Normal View History

2022-09-23 23:49:23 +00:00
default:
just --list
clean:
rm *.js -f
compile: clean
tsc *.ts
test: compile
jest *.test.js
test-watch:
ls *.ts | entr -r just test