From e83c097e98519d2de20da38b135502c492ecab5b Mon Sep 17 00:00:00 2001 From: Oliver Akins Date: Tue, 9 Aug 2022 19:12:27 -0600 Subject: [PATCH] Add a rund recipe and remove the interfaces dependency --- makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index ad9a775..eb31257 100644 --- a/makefile +++ b/makefile @@ -14,7 +14,7 @@ BIN := $(shell $(PACKAGE_MANAGER) bin) .PHONY: $(OUT_DIR) dev prod run interfaces -$(OUT_DIR): interfaces +$(OUT_DIR): tsc --outDir $(OUT_DIR) interfaces: @@ -28,5 +28,8 @@ dev: $(OUT_DIR) prod: $(OUT_DIR) NODE_ENV=production $(NODE) $(OUT_DIR)/main.js +rund: + NODE_ENV=development $(NODE) $(OUT_DIR)/main.js + run: NODE_ENV=production $(NODE) $(OUT_DIR)/main.js \ No newline at end of file