15 lines
146 B
Makefile
15 lines
146 B
Makefile
|
default:
|
||
|
just --list
|
||
|
|
||
|
clean:
|
||
|
rm *.js -f
|
||
|
|
||
|
compile: clean
|
||
|
tsc *.ts
|
||
|
|
||
|
test: compile
|
||
|
jest *.test.js
|
||
|
|
||
|
test-watch:
|
||
|
ls *.ts | entr -r just test
|