.PHONY: install
install:
	npm install

.PHONY: ci
ci:
	npm ci

.PHONY: dev
dev:
	# --no-open means that the browser will not be opened on start.
	# This is done to avoid opening many tabs repeatedly when editing
	# docusaurus.config.js.
	npx docusaurus start --no-open

.PHONY: build
build:
	npx docusaurus build

.PHONY: build-latest
build-latest:
	./bin/build-latest.sh

.PHONY: clean
clean:
	rm -rf build .docusaurus

.PHONY: generate-cli-docs
generate-cli-docs:
	$(CURDIR)/../build/gen-cli-docs.sh > $(CURDIR)/src/data/cli.json

.PHONY: smoke-test
smoke-test:
	./bin/smoke-test.sh

.PHONY: fmt
fmt:
	npx dprint fmt

.PHONY: fmt-check
fmt-check:
	npx dprint check

.PHONY: lint
lint:
	npx eslint --fix .

.PHONY: lint-check
lint-check:
	npx eslint .

.PHONY: markdownlint
markdownlint:
	npx markdownlint-cli2 --fix

.PHONY: markdownlint-check
markdownlint-check:
	npx markdownlint-cli2

.PHONY: spell-check
spell-check:
	vale --config=.vale.ini .
