summaryrefslogtreecommitdiff
path: root/src/app.ts
diff options
context:
space:
mode:
author8cy <[email protected]>2020-05-05 15:17:58 -0700
committer8cy <[email protected]>2020-05-05 15:17:58 -0700
commit7a26c1a3727b7072835680687ebb38473e1a09cc (patch)
tree1faf5a6cb771737570c04fc813fd5f266c95fe7c /src/app.ts
parentadd genservers (diff)
downloaddep-core-7a26c1a3727b7072835680687ebb38473e1a09cc.tar.xz
dep-core-7a26c1a3727b7072835680687ebb38473e1a09cc.zip
add build scripts, remove dist
- remove some db errors, namely ones that are bs like no on doc type errors - move ws to spike - remove copy npm scripts i think - remove .env and package
Diffstat (limited to 'src/app.ts')
-rw-r--r--src/app.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app.ts b/src/app.ts
index c7ca081..679c872 100644
--- a/src/app.ts
+++ b/src/app.ts
@@ -1,7 +1,7 @@
import { ShardingManager } from 'discord.js';
import config from './config.json';
-const manager = new ShardingManager('./dist/bot.js', { token: config['secret'] });
-//const manager = new ShardingManager('./bot.js', { token: config['secret'] });
+//const manager = new ShardingManager('./dist/bot.js', { token: config['secret'] });
+const manager = new ShardingManager('./bot.js', { token: config['secret'] });
manager.spawn();
console.log('\x1b[0m' + 'Connecting...');