Files
slidetogether/static/Makefile

17 lines
193 B
Makefile
Raw Normal View History

2020-05-03 22:51:16 +00:00
all: check remote.js
remote.js: *.ts *.json
tsc
check: *.ts *.json *.css
tslint --project . --fix
stylelint --fix *.css
clean:
rm -f remote.js
ci:
tslint --project .
stylelint *.css