Skip to content

Commit

Permalink
Merge pull request #26 from Garlic-Team/dev
Browse files Browse the repository at this point in the history
version(4.2.7): Bug Fixes, DB change
  • Loading branch information
nexpid authored Jun 25, 2021
2 parents d6ee16d + 9d9d4c6 commit 266f037
Show file tree
Hide file tree
Showing 19 changed files with 879 additions and 650 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
node_modules/
yarn.lock

# Github
.github/

# Log files
logs/
*.log
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,14 @@ client.on("ready", () => {
slash: "both",
prefix: "."
},
database: {/*read guide*/}
database: "url"
/* DB SUPPORT
* redis://user:pass@localhost:6379
* mongodb://user:pass@localhost:27017/dbname
* sqlite://path/to/database.sqlite
* postgresql://user:pass@localhost:5432/dbname
* mysql://user:pass@localhost:3306/dbname
*/
})

gc.on("debug", (debug)=>{console.log(debug)})
Expand Down
321 changes: 321 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
{
"name": "gcommands",
"version": "4.1.5",
"version": "4.2.7",
"description": "Open-source slash/normal command handler",
"main": "src/index.js",
"types": "./typings/index.d.ts",
"dependencies": {
"axios": "^0.21.1",
"discord.js": "^12.5.3",
"glob": "^7.1.6",
"mongoose": "^5.12.7"
"discord.js": "^12.5.3"
},
"scripts": {
"test": "node test.js"
Expand Down
Loading

0 comments on commit 266f037

Please sign in to comment.