Skip to main content
Module

x/superdeno/Makefile

Super-agent driven library for testing Deno HTTP servers.
Go to Latest
File
.PHONY: build ci doc fmt fmt-check lock precommit test typedoc build: @deno run --lock=lock.json --reload mod.ts ci: @make fmt-check @make build @make test doc: @deno doc ./mod.ts fmt: @deno fmt fmt-check: @deno fmt --check lock: @deno run --lock=lock.json --lock-write --reload mod.ts precommit: @make typedoc @make fmt @make fmt @make lock test: @deno test --allow-net --allow-read typedoc: @typedoc --ignoreCompilerErrors --out ./docs --mode modules --includeDeclarations --excludeExternals ./src