Files
releases/docs/Makefile
T
Charlie Egan d10827c8fa docs: Return cli docs gen command (#7597)
This is used in post-merge. I have yet to fix the generation of this md
file and so I am just returning this command for now to fix post merge
until this is done.

Signed-off-by: Charlie Egan <charlie@styra.com>
2025-05-19 13:36:41 +00:00

24 lines
296 B
Makefile

.PHONY: install
install:
npm install
.PHONY: ci
ci:
npm ci
.PHONY: dev
dev:
npx docusaurus start
.PHONY: build
build:
npx docusaurus build
.PHONY: clean
clean:
rm -rf build .docusaurus
.PHONY: generate-cli-docs
generate-cli-docs:
$(CURDIR)/../build/gen-cli-docs.sh "$(CURDIR)/content"