chore: Release create-discord-app/bot (#11198)

* build: bump versions

* build: specify `monoRepo`

Specifying that this is a monorepo seems to fix changelog generation and the conventional bumping.

* chore(create-discord-bot): release create-discord-bot@4.1.0
This commit is contained in:
Jiralite
2025-10-24 19:06:45 +01:00
committed by GitHub
parent 0c1ff5ea29
commit c05f653f0a
8 changed files with 40 additions and 12 deletions

View File

@@ -2,5 +2,6 @@
"name": "create-discord-bot",
"packagePath": "packages/create-discord-bot",
"tagTemplate": "{{name}}@{{new-version}}",
"identifierBase": false
"identifierBase": false,
"monoRepo": true
}

View File

@@ -2,6 +2,33 @@
All notable changes to this project will be documented in this file.
# [create-discord-bot@4.1.0](https://github.com/discordjs/discord.js/compare/create-discord-bot@4.0.0...create-discord-bot@4.1.0) - (2025-10-24)
## Bug Fixes
- **guide:** Miscellaneous fixes (#11147) ([a97ac82](https://github.com/discordjs/discord.js/commit/a97ac82619f0a807a7b816afa0140ba9161aa50d)) by @Jiralite
## Documentation
- Replace Discord API with Discord Developers (#10968) ([3a060f7](https://github.com/discordjs/discord.js/commit/3a060f74945da78535440890be0a5df8bd0ee36b)) by @Jiralite
## Features
- Bump discord.js in create-discord-bot/app (#11048) ([4b6060d](https://github.com/discordjs/discord.js/commit/4b6060dcd8fc7b3f065fd51fb0fa1a576ee4fca7)) by @vladfrangu
## Refactor
- Update deno template and loader logic (#11060) ([8ca279e](https://github.com/discordjs/discord.js/commit/8ca279e0c3764f4f059c5d3f895b2c76678859e1)) by @almeidx
- **create-discord-bot:** Replace deps with built-in apis (#10971) ([ee3ca6f](https://github.com/discordjs/discord.js/commit/ee3ca6f7c629b169a976edf66b54b0dfe5c3a486)) by @SuperchupuDev
### New Contributors
* @didinele made their first contribution in #11152
* @Jiralite made their first contribution in #11147
* @almeidx made their first contribution in #11133
* @vladfrangu made their first contribution in #11048
* @SuperchupuDev made their first contribution in #10971
# [create-discord-bot@4.0.0](https://github.com/discordjs/discord.js/compare/create-discord-bot@1.0.0...create-discord-bot@4.0.0) - (2025-06-21)
## Bug Fixes

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "create-discord-bot",
"version": "4.0.0",
"version": "4.1.0",
"description": "A simple way to create a startup Discord bot.",
"scripts": {
"build": "tsc --noEmit && tsup",

View File

@@ -11,8 +11,8 @@
"start": "bun run src/index.[REPLACE_IMPORT_EXT]"
},
"dependencies": {
"@discordjs/core": "^2.2.2",
"discord.js": "^14.22.1"
"@discordjs/core": "^2.3.0",
"discord.js": "^14.24.0"
},
"devDependencies": {
"eslint": "^9.37.0",

View File

@@ -11,8 +11,8 @@
"start": "bun run src/index.[REPLACE_IMPORT_EXT]"
},
"dependencies": {
"@discordjs/core": "^2.2.2",
"discord.js": "^14.22.1"
"@discordjs/core": "^2.3.0",
"discord.js": "^14.24.0"
},
"devDependencies": {
"@sapphire/ts-config": "^5.0.1",

View File

@@ -19,8 +19,8 @@
},
},
"imports": {
"@discordjs/core": "npm:@discordjs/core@^2.2.2",
"discord.js": "npm:discord.js@^14.22.1",
"@discordjs/core": "npm:@discordjs/core@^2.3.0",
"discord.js": "npm:discord.js@^14.24.0",
"zod": "npm:zod@^3.25.76",
},
}

View File

@@ -11,8 +11,8 @@
"deploy": "node --env-file=.env src/util/deploy.js"
},
"dependencies": {
"@discordjs/core": "^2.2.2",
"discord.js": "^14.22.1"
"@discordjs/core": "^2.3.0",
"discord.js": "^14.24.0"
},
"devDependencies": {
"eslint": "^9.37.0",

View File

@@ -12,8 +12,8 @@
"start": "node --env-file=.env dist/index.js"
},
"dependencies": {
"@discordjs/core": "^2.2.2",
"discord.js": "^14.22.1"
"@discordjs/core": "^2.3.0",
"discord.js": "^14.24.0"
},
"devDependencies": {
"@sapphire/ts-config": "^5.0.1",