pleshevski.ru/makefile

23 lines
252 B
Makefile
Raw Normal View History

2022-03-20 23:21:38 +03:00
PAR := $(MAKE) -j 128
watch:
$(PAR) hr ts-w
2022-03-21 23:04:28 +03:00
build: ts
start:
node target/scripts/main.mjs
2022-03-20 23:21:38 +03:00
hr:
deno run -A ~/sandbox/hr/server.ts target static
2022-03-16 22:17:07 +03:00
2022-03-21 23:04:28 +03:00
ts:
npx tsc
2022-03-16 22:17:07 +03:00
ts-w:
2022-03-21 23:04:28 +03:00
NODE_ENV=develop npx tsc-watch --onSuccess "make start"
2022-03-16 22:17:07 +03:00
clean:
rm -rf target