data/Makefile

16 lines
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