aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e3c948e33e..da3901cc42 100644
--- a/Makefile
+++ b/Makefile
@@ -166,6 +166,9 @@ help:
@echo " - watch-backend watch backend files and continuously rebuild"
@echo " - clean delete backend and integration files"
@echo " - clean-all delete backend, frontend and integration files"
+ @echo " - deps install dependencies"
+ @echo " - deps-frontend install frontend dependencies"
+ @echo " - deps-backend install backend dependencies"
@echo " - lint lint everything"
@echo " - lint-frontend lint frontend files"
@echo " - lint-backend lint backend files"
@@ -662,6 +665,16 @@ docs:
fi
cd docs; make trans-copy clean build-offline;
+.PHONY: deps
+deps: deps-frontend deps-backend
+
+.PHONY: deps-frontend
+deps-frontend: node_modules
+
+.PHONY: deps-backend
+deps-backend:
+ $(GO) mod download
+
node_modules: package-lock.json
npm install --no-save
@touch node_modules