mirror of
https://github.com/web3privacy/data
synced 2024-10-15 18:16:28 +02:00
22 lines
306 B
Makefile
22 lines
306 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
|