Skip to content

Upgrade to v14 #20

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 25 commits into from
Oct 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
ed21eb1
Merge pull request #10 from devarshishimpi/main
devarshishimpi Aug 5, 2022
3f065e3
new base
Mini51 Aug 5, 2022
8fdeb25
Merge pull request #12 from Mini51/7-should-update-to-v14-of-discordjs
devarshishimpi Aug 6, 2022
f8e2904
Created the ban command
Mini51 Aug 7, 2022
09cb41e
Created a kick command
Mini51 Aug 7, 2022
9bca12a
Fixed bug involving reason length
Mini51 Aug 7, 2022
cb2795c
Merge pull request #13 from Mini51/7-should-update-to-v14-of-discordjs
devarshishimpi Aug 8, 2022
bec61d4
added a clear command
Mini51 Aug 8, 2022
e80f877
Merge pull request #14 from Mini51/7-should-update-to-v14-of-discordjs
devarshishimpi Aug 8, 2022
3713c74
added a dynamic help command
Mini51 Aug 8, 2022
fb2469c
Merge pull request #15 from Mini51/7-should-update-to-v14-of-discordjs
devarshishimpi Aug 8, 2022
071da22
added mute command
Mini51 Aug 8, 2022
2eadc9e
done with the warning base
Mini51 Aug 17, 2022
d07f3c9
Merge pull request #16 from Mini51/7-should-update-to-v14-of-discordjs
devarshishimpi Aug 17, 2022
9f62bc1
removed redundant code, fixed bot check
lilmistake Oct 1, 2022
81db86b
Fixed condition to check for bot
lilmistake Oct 1, 2022
7bdb922
totally forgot about discord caching users
lilmistake Oct 1, 2022
f36fa75
checking if user is a bot
lilmistake Oct 1, 2022
e0dd214
wrong path
lilmistake Oct 1, 2022
12ea8a6
upgraded a package - vulnerable
lilmistake Oct 1, 2022
1f4b385
Merge pull request #18 from lilmistake/7-should-update-to-v14-of-disc…
devarshishimpi Oct 1, 2022
c0bbc60
start script
lilmistake Oct 3, 2022
1309e3e
added packages
lilmistake Oct 3, 2022
4a890a9
adding mongodb atlas
lilmistake Oct 3, 2022
c46e7a0
Merge pull request #19 from lilmistake/7-should-update-to-v14-of-disc…
devarshishimpi Oct 3, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
130 changes: 130 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
4 changes: 0 additions & 4 deletions keep_alive.js

This file was deleted.

Loading