From 3f03fe8515d457d09c0b31411dd9522877f6b66f Mon Sep 17 00:00:00 2001 From: AntiD2ta Date: Sun, 6 Oct 2024 11:54:09 +0000 Subject: [PATCH] chore(makefile): Add rule to install docs dependencies --- docs/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/Makefile b/docs/Makefile index e8b07ede9..515e55dad 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -13,5 +13,10 @@ docs-serve: ## Serves the built website locally docs-publish: ## Publishes the website to GitHub pages npm deploy +install-deps: ## Install dependencies + sudo apt-get update + sudo apt-get install -y nodejs npm + npm install + help: ## Show this help @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' \ No newline at end of file