data/Makefile
2024-01-25 20:45:28 +01:00

13 lines
No EOL
166 B
Makefile

all: test build
cache:
deno cache utils/build.js
build:
deno run --allow-all utils/build.js
test:
deno test --allow-all utils/test.js
fmt:
deno fmt utils/*.js