Skip to content

Commit

Permalink
chore: make website
Browse files Browse the repository at this point in the history
Added make target for use in Fleek
  • Loading branch information
lidel committed Mar 17, 2023
1 parent b800d6a commit 03619dc
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
all: superlinter
SPEC_GENERATOR_VER=v1.1.2


all: website

clean:
rm -rf ./out

website: clean
npx spec-generator@$(SPEC_GENERATOR_VER) -c .config.json

watch: clean
npx spec-generator@$(SPEC_GENERATOR_VER) -c .config.json -w

superlinter:
docker run --rm -e VALIDATE_ALL_CODEBASE=false -e RUN_LOCAL=true -e VALIDATE_MARKDOWN=true -e MARKDOWN_CONFIG_FILE=".markdownlint.json" -e LINTER_RULES_PATH="." -v $(shell pwd):/tmp/lint github/super-linter:v4

0 comments on commit 03619dc

Please sign in to comment.