.PHONY: coverage doc lint to_json to_yaml

include .env
export

coverage:
	tbls coverage

doc:
	tbls doc --rm-dist

lint:
	tbls lint

to_json:
	tbls out -t json -o schema.json

to_yaml:
	tbls out -t yaml -o schema.yaml
