paisa/Makefile

21 lines
601 B
Makefile
Raw Normal View History

2022-04-13 13:05:46 -04:00
.PHONY: docs
2022-04-02 03:31:29 -04:00
serve:
./node_modules/.bin/nodemon --signal SIGTERM --watch '.' --ext go,js,css,html --exec 'go run . serve || exit 1'
2022-04-02 03:31:29 -04:00
watch:
./node_modules/.bin/esbuild web/src/index.ts --bundle --watch --sourcemap --outfile=web/static/dist.js
2022-04-13 13:05:46 -04:00
docs:
cd docs && mdbook serve --open
2022-05-15 09:13:16 -04:00
sample:
go build && ./paisa init && ./paisa update && ./paisa serve
publish:
nix-shell --run 'cd docs && mdbook build'
2022-05-07 11:00:44 -04:00
lint:
./node_modules/.bin/prettier --check web/src
./node_modules/.bin/eslint web/src --ext .js,.jsx,.ts,.tsx
2022-05-28 02:17:46 -04:00
./node_modules/.bin/tsc --project tsconfig.json --noEmit
2022-05-07 11:21:32 -04:00
test -z $$(gofmt -l .)