data/Makefile
2024-03-07 13:28:46 +01:00

19 lines
No EOL
256 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
images:
deno run --allow-all utils/images.js
test:
deno test --allow-all utils/test.js
fmt:
deno fmt utils/*.js