mirror of
https://github.com/web3privacy/data
synced 2024-10-15 18:16:28 +02:00
25 lines
470 B
Makefile
25 lines
470 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
|
|
|
|
refresh:
|
|
deno run --allow-all utils/engine.js ; deno run --allow-all utils/images.js ; deno run --allow-all utils/img-opt.js ; deno run --allow-all utils/test.js
|