diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-06-09 22:02:33 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-06-10 15:25:12 +0800 |
commit | 133bbc64f891afc1ae6c965176cddbc9050f9e80 (patch) | |
tree | d4411565d41e214df0aefd79bfe9240ab8f0fb0f /deno/deno.json | |
parent | cc013584714e8ce1f583ce391f8123881e3c0297 (diff) | |
download | crupest-133bbc64f891afc1ae6c965176cddbc9050f9e80.tar.gz crupest-133bbc64f891afc1ae6c965176cddbc9050f9e80.tar.bz2 crupest-133bbc64f891afc1ae6c965176cddbc9050f9e80.zip |
refactor(deno): done template generation.
Diffstat (limited to 'deno/deno.json')
-rw-r--r-- | deno/deno.json | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/deno/deno.json b/deno/deno.json index 0199e14..71ad398 100644 --- a/deno/deno.json +++ b/deno/deno.json @@ -1,15 +1,17 @@ { - "workspace": [ "./base", "./mail-relay" ], + "workspace": [ "./base", "./service-manager", "./mail-relay" ], "tasks": { - "compile:mail-relay": "deno task --cwd=mail-relay compile" + "compile:mail-relay": "deno task --cwd=mail-relay compile", + "compile:service-manager": "deno task --cwd=service-manager compile" }, "imports": { "@std/cli": "jsr:@std/cli@^1.0.19", + "@std/collections": "jsr:@std/collections@^1.1.1", "@std/csv": "jsr:@std/csv@^1.0.6", "@std/encoding": "jsr:@std/encoding@^1.0.10", "@std/expect": "jsr:@std/expect@^1.0.16", "@std/io": "jsr:@std/io@^0.225.2", "@std/path": "jsr:@std/path@^1.1.0", - "@std/testing": "jsr:@std/testing@^1.0.13", + "@std/testing": "jsr:@std/testing@^1.0.13" } } |