22 lines
243 B
Makefile
22 lines
243 B
Makefile
PAR := $(MAKE) -j 128
|
|
|
|
|
|
watch:
|
|
$(PAR) hr ts-w
|
|
|
|
build: ts
|
|
|
|
start:
|
|
npm run start
|
|
|
|
hr:
|
|
deno run -A ~/sandbox/hr/server.ts target static
|
|
|
|
ts:
|
|
npm run build
|
|
|
|
ts-w:
|
|
NODE_ENV=develop npx tsc-watch --onSuccess "make start"
|
|
|
|
clean:
|
|
rm -rf target
|