mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
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:
@@ -2,5 +2,6 @@
|
|||||||
"name": "create-discord-bot",
|
"name": "create-discord-bot",
|
||||||
"packagePath": "packages/create-discord-bot",
|
"packagePath": "packages/create-discord-bot",
|
||||||
"tagTemplate": "{{name}}@{{new-version}}",
|
"tagTemplate": "{{name}}@{{new-version}}",
|
||||||
"identifierBase": false
|
"identifierBase": false,
|
||||||
|
"monoRepo": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,33 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
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)
|
# [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
|
## Bug Fixes
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json.schemastore.org/package.json",
|
"$schema": "https://json.schemastore.org/package.json",
|
||||||
"name": "create-discord-bot",
|
"name": "create-discord-bot",
|
||||||
"version": "4.0.0",
|
"version": "4.1.0",
|
||||||
"description": "A simple way to create a startup Discord bot.",
|
"description": "A simple way to create a startup Discord bot.",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc --noEmit && tsup",
|
"build": "tsc --noEmit && tsup",
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"start": "bun run src/index.[REPLACE_IMPORT_EXT]"
|
"start": "bun run src/index.[REPLACE_IMPORT_EXT]"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@discordjs/core": "^2.2.2",
|
"@discordjs/core": "^2.3.0",
|
||||||
"discord.js": "^14.22.1"
|
"discord.js": "^14.24.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"eslint": "^9.37.0",
|
"eslint": "^9.37.0",
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"start": "bun run src/index.[REPLACE_IMPORT_EXT]"
|
"start": "bun run src/index.[REPLACE_IMPORT_EXT]"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@discordjs/core": "^2.2.2",
|
"@discordjs/core": "^2.3.0",
|
||||||
"discord.js": "^14.22.1"
|
"discord.js": "^14.24.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@sapphire/ts-config": "^5.0.1",
|
"@sapphire/ts-config": "^5.0.1",
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
"imports": {
|
"imports": {
|
||||||
"@discordjs/core": "npm:@discordjs/core@^2.2.2",
|
"@discordjs/core": "npm:@discordjs/core@^2.3.0",
|
||||||
"discord.js": "npm:discord.js@^14.22.1",
|
"discord.js": "npm:discord.js@^14.24.0",
|
||||||
"zod": "npm:zod@^3.25.76",
|
"zod": "npm:zod@^3.25.76",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"deploy": "node --env-file=.env src/util/deploy.js"
|
"deploy": "node --env-file=.env src/util/deploy.js"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@discordjs/core": "^2.2.2",
|
"@discordjs/core": "^2.3.0",
|
||||||
"discord.js": "^14.22.1"
|
"discord.js": "^14.24.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"eslint": "^9.37.0",
|
"eslint": "^9.37.0",
|
||||||
|
|||||||
@@ -12,8 +12,8 @@
|
|||||||
"start": "node --env-file=.env dist/index.js"
|
"start": "node --env-file=.env dist/index.js"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@discordjs/core": "^2.2.2",
|
"@discordjs/core": "^2.3.0",
|
||||||
"discord.js": "^14.22.1"
|
"discord.js": "^14.24.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@sapphire/ts-config": "^5.0.1",
|
"@sapphire/ts-config": "^5.0.1",
|
||||||
|
|||||||
Reference in New Issue
Block a user