mirror of
https://github.com/cupcakearmy/glyphance.git
synced 2025-09-01 04:10:39 +00:00
13 lines
274 B
Makefile
13 lines
274 B
Makefile
.PHONY: jsonschema docker
|
|
|
|
jsonschema:
|
|
rm -rf docs/config
|
|
mkdir -p tmp docs/config
|
|
cat src/assets/config.schema.yaml | yq > tmp/glyphance.schema.json
|
|
pnpm dlx @adobe/jsonschema2md --input tmp --out docs/config
|
|
rm -r out
|
|
rm -r tmp
|
|
|
|
docker:
|
|
docker build -t glyphance .
|