Files
slidetogether/static/Makefile
Ian Gulliver de64089453 Initial commit
2020-05-03 22:51:16 +00:00

17 lines
193 B
Makefile

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