Skip to content

Commit 8776f2e

Browse files
committed
Use udd directly
1 parent f3d266b commit 8776f2e

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
/.tools
21
/node_modules

Makefile

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
TOOLS := ${CURDIR}/.tools
21
TARGETS := $$(find . \( -name '*.ts' -or -name '*.md' \) -not -path './.node/*' -not -path './node_modules/*')
32

43
.DEFAULT_GOAL := help
@@ -8,10 +7,6 @@ help:
87
perl -ne 'print if /^\w+.*##/;' | \
98
perl -pe 's/(.*):.*##\s*/sprintf("%-20s",$$1)/eg;'
109

11-
tools: FORCE ## Install development tools
12-
@mkdir -p ${TOOLS}
13-
@deno install -A -f -n udd --root ${TOOLS} https://deno.land/x/[email protected]/main.ts
14-
1510
fmt: FORCE ## Format code
1611
@deno fmt ${TARGETS}
1712

@@ -27,8 +22,8 @@ type-check: FORCE ## Type check
2722
test: FORCE ## Test
2823
@deno test --unstable -A ${TARGETS}
2924

30-
update: FORCE ## Update dependencies
31-
@${TOOLS}/bin/udd ${TARGETS}
25+
deps: FORCE ## Update dependencies
26+
@deno run -A https://deno.land/x/udd@0.7.2/main.ts ${TARGETS}
3227
@make fmt
3328

3429
FORCE:

0 commit comments

Comments
 (0)