data/Makefile

13 lines
166 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
test:
deno test --allow-all utils/test.js
fmt:
deno fmt utils/*.js