Skip to content

Commit

Permalink
fix(deps): update all non-major dependencies (#151)
Browse files Browse the repository at this point in the history
* fix(deps): update all non-major dependencies

* chore: merge pull request #67 from lazersmoke/fix-andys-shit fix andys shit

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jeroen Claassens <[email protected]>
  • Loading branch information
renovate[bot] and favna authored Oct 19, 2024
1 parent 9e55484 commit d5bba49
Show file tree
Hide file tree
Showing 7 changed files with 622 additions and 486 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
- name: Checkout Project
uses: actions/checkout@v4
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3.6.1
uses: docker/setup-buildx-action@v3.7.1
- name: Login to GitHub Container Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Gemboard Docker image
uses: docker/build-push-action@v6.7.0
uses: docker/build-push-action@v6.9.0
with:
push: true
context: ./
Expand Down
725 changes: 367 additions & 358 deletions .yarn/releases/yarn-4.5.0.cjs → .yarn/releases/yarn-4.5.1.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ plugins:
- path: .yarn/plugins/@yarnpkg/plugin-git-hooks.cjs
spec: 'https://raw.githubusercontent.com/trufflehq/yarn-plugin-git-hooks/main/bundles/%40yarnpkg/plugin-git-hooks.js'

yarnPath: .yarn/releases/yarn-4.5.0.cjs
yarnPath: .yarn/releases/yarn-4.5.1.cjs
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"dev": "tsup --watch --onSuccess \"yarn start\""
},
"dependencies": {
"@prisma/client": "^5.19.1",
"@prisma/client": "^5.21.1",
"@sapphire/decorators": "^6.1.0",
"@sapphire/framework": "^5.2.1",
"@sapphire/plugin-logger": "^4.0.2",
Expand All @@ -35,8 +35,8 @@
"@skyra/start-banner": "^2.0.1",
"bufferutil": "^4.0.8",
"colorette": "^2.0.20",
"discord.js": "^14.16.2",
"figlet": "^1.7.0",
"discord.js": "^14.16.3",
"figlet": "^1.8.0",
"gradient-string": "^2.0.2",
"utf-8-validate": "^6.0.4",
"ws": "^8.18.0",
Expand All @@ -48,21 +48,21 @@
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@swc/core": "^1.7.26",
"@types/figlet": "^1.5.8",
"@swc/core": "^1.7.36",
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/node": "^20.16.5",
"@types/node": "^20.16.13",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-prisma": "^5.0.0",
"prisma": "^5.19.1",
"prisma": "^5.21.1",
"rimraf": "^6.0.1",
"tsup": "^8.3.0",
"typescript": "~5.4.5"
Expand Down Expand Up @@ -93,5 +93,5 @@
}
},
"prettier": "@sapphire/prettier-config",
"packageManager": "[email protected].0"
"packageManager": "[email protected].1"
}
1 change: 1 addition & 0 deletions src/commands/star.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export class SlashCommand extends Command {
(builder) =>
builder //
.setName('Star Message')
// @ts-expect-error temporarily ignore the error because discord.js broke types
.setType(ApplicationCommandType.Message),

{ guildIds: getGuildIds() }
Expand Down
1 change: 1 addition & 0 deletions src/commands/unstar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export class SlashCommand extends Command {
(builder) =>
builder //
.setName('Unstar Message')
// @ts-expect-error temporarily ignore the error because discord.js broke types
.setType(ApplicationCommandType.Message),

{ guildIds: getGuildIds() }
Expand Down
Loading

0 comments on commit d5bba49

Please sign in to comment.