Files
discordeno/template/bigbot/deno.json
Reboot-Codes 0986fa9704 More BigBot Fixes (#2233)
* Add `.DS_Store` to `.gitignore`

* Format and improve DX.

* Add extra logging and fix gateway workers.

* Deno fmt.

* Be more explicit in `.env.example`.

* Add a `watch-bot` task and format.

* Deno FMT

* Deno FMT (all `template/bigbot` files)

Co-authored-by: ITOH <to@itoh.at>
2022-05-25 22:33:49 +02:00

9 lines
380 B
JSON

{
"tasks": {
"rest": "deno run -A --unstable --import-map ./importMap.json ./src/rest/mod.ts",
"bot": "deno run -A --unstable --import-map ./importMap.json ./src/bot/mod.ts",
"watch-bot": "deno run --watch -A --unstable --import-map ./importMap.json ./src/bot/mod.ts",
"gateway": "deno run -A --unstable --import-map ./importMap.json ./src/gateway/mod.ts"
}
}