djs-builder 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -113,9 +113,17 @@ const starterOptions: StarterOptions = {
113
113
  const bot = new Starter();
114
114
 
115
115
  // Start the bot
116
- bot.start(discordClient, starterOptions)
117
- .then(() => console.log('Bot started successfully'))
118
- .catch(err => console.error('Error starting bot:', err));
116
+ const botstarted = bot.start(discordClient, starterOptions)
117
+
118
+ console.log(botstarted)
119
+ // return {
120
+ // mongodb
121
+ // versedb
122
+ // slashSize
123
+ // prefixSize
124
+ // eventSize
125
+ // };
126
+
119
127
  ```
120
128
 
121
129
  ## ButtonManager
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "djs-builder",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Discord.js bot builder. Supports Ts and Js.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",