Initial commit

This commit is contained in:
Ian Gulliver
2020-05-03 22:51:16 +00:00
commit de64089453
10 changed files with 1394 additions and 0 deletions

16
static/Makefile Normal file
View File

@@ -0,0 +1,16 @@
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