data/Makefile
2024-03-03 21:52:22 +01:00

16 lines
No EOL
209 B
Makefile

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