mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-01 08:20:08 +00:00
* 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>
9 lines
380 B
JSON
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"
|
|
}
|
|
}
|