data/Makefile
2024-03-07 17:47:20 +01:00

22 lines
No EOL
305 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
img-opt:
deno run --allow-all utils/img-opt.js
test:
deno test --allow-all utils/test.js
fmt:
deno fmt utils/*.js