FizzBuzz with TypeScript
This commit is contained in:
commit
4e2e0d6f0c
7 changed files with 2236 additions and 0 deletions
14
typescript/fizzbuzz/justfile
Normal file
14
typescript/fizzbuzz/justfile
Normal file
|
@ -0,0 +1,14 @@
|
|||
default:
|
||||
just --list
|
||||
|
||||
clean:
|
||||
rm *.js -f
|
||||
|
||||
compile: clean
|
||||
tsc *.ts
|
||||
|
||||
test: compile
|
||||
jest *.test.js
|
||||
|
||||
test-watch:
|
||||
ls *.ts | entr -r just test
|
Loading…
Add table
Add a link
Reference in a new issue