-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (17 loc) · 749 Bytes
/
Makefile
File metadata and controls
22 lines (17 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
lock.json: deps.ts
deno cache --lock=lock.json --lock-write ./deps.ts
.PHONY: install
install:
deno cache --reload --lock=lock.json ./deps.ts
.PHONY: run
run:
deno run --lock=lock.json --import-map=import_map.json --allow-read --allow-write ./lib/zettelcorn.ts
.PHONY: run-remote
run-remote:
deno run --import-map=import_map.json --allow-read --allow-write https://raw.githubusercontent.com/davidtimmons/zettelcorn/master/lib/zettelcorn.ts
.PHONY: run-remote-dev
run-remote-dev:
deno run --import-map=import_map.json --allow-read --allow-write https://raw.githubusercontent.com/davidtimmons/zettelcorn/develop/lib/zettelcorn.ts
.PHONY: test
test:
deno test --lock=lock.json --import-map=import_map.json --allow-read --allow-write ./test/