data/Makefile

23 lines
306 B
Makefile
Raw Normal View History

2024-01-25 20:45:28 +01:00
all: test build
2023-11-28 03:05:02 +01:00
cache:
deno cache utils/build.js
build:
deno run --allow-all utils/build.js
2024-03-03 21:52:22 +01:00
sync:
deno run --allow-all utils/sync.js
2024-03-07 13:28:46 +01:00
images:
deno run --allow-all utils/images.js
2024-03-07 17:47:20 +01:00
img-opt:
deno run --allow-all utils/img-opt.js
test:
deno test --allow-all utils/test.js
2023-11-28 03:05:02 +01:00
fmt:
2024-08-22 23:00:40 +02:00
deno fmt utils/*.js