10 lines
75 B
Makefile
10 lines
75 B
Makefile
|
|
.PHONY: all
|
|
all:
|
|
rm -rf lib
|
|
tsc
|
|
|
|
.PHONY: run
|
|
run: all
|
|
node lib/test.js
|