File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 1- /.tools
21/node_modules
Original file line number Diff line number Diff line change 1- TOOLS := ${CURDIR}/.tools
21TARGETS := $$(find . \( -name '*.ts' -or -name '*.md' \ ) -not -path './.node/*' -not -path './node_modules/*')
32
43.DEFAULT_GOAL := 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-
1510fmt : FORCE # # Format code
1611 @deno fmt ${TARGETS}
1712
@@ -27,8 +22,8 @@ type-check: FORCE ## Type check
2722test : 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
3429FORCE :
You can’t perform that action at this time.
0 commit comments