13 lines
129 B
Makefile
13 lines
129 B
Makefile
all: lint build
|
|
|
|
build:
|
|
tsc
|
|
|
|
lint:
|
|
tslint --project .
|
|
|
|
clean:
|
|
rm -f public/js/irreligious.js
|
|
|
|
run:
|
|
firefox public/index.html
|