disgroove 1.3.1-dev.96bf590 → 1.3.1-dev.99aa77b

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.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "disgroove",
3
- "version": "1.3.1-dev.96bf590",
3
+ "version": "1.3.1-dev.99aa77b",
4
4
  "description": "An NPM package to interact with the Discord API",
5
5
  "main": "./dist/lib/index.js",
6
6
  "types": "./dist/lib/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "disgroove",
3
- "version": "1.3.1-dev.96bf590",
3
+ "version": "1.3.1-dev.99aa77b",
4
4
  "description": "An NPM package to interact with the Discord API",
5
5
  "main": "./dist/lib/index.js",
6
6
  "types": "./dist/lib/index.d.ts",
package/test/basic.js DELETED
@@ -1,8 +0,0 @@
1
- const { Client } = require("../dist/lib");
2
- const client = new Client(
3
- "MTA4NDUxNzc5MjkwMjA0MTcxMw.GWcoyx.OnFy7xUy5GCLna2Nxo7APyuKXFw2m9sKi5pGL4"
4
- );
5
-
6
- client.on("ready", () => console.log(`${client.user.username} is ready!`));
7
-
8
- client.connect();