Skip to content

Commit f0ec70d

Browse files
Jiralitevladfrangu
andauthored
feat: bump package versions (#9951)
* feat: bump package versions * chore(create-discord-bot): release [email protected] --------- Co-authored-by: Vlad Frangu <[email protected]>
1 parent 8a6045f commit f0ec70d

File tree

12 files changed

+26
-16
lines changed

12 files changed

+26
-16
lines changed

packages/create-discord-bot/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
# [[email protected]](https://github.com/discordjs/discord.js/compare/create-discord-bot/0.2.2...create-discord-bot/0.2.3) - (2023-11-12)
6+
7+
## Bug Fixes
8+
9+
- Import picocolors as default (#9949) ([8a6045f](https://github.com/discordjs/discord.js/commit/8a6045f6003971dbf64c8576f08631751b982ae4))
10+
11+
## Features
12+
13+
- Bump package versions ([e8bd354](https://github.com/discordjs/discord.js/commit/e8bd35405239616b12cb5f09eb983f5251298aca))
14+
515
# [[email protected]](https://github.com/discordjs/discord.js/compare/[email protected]@0.2.2) - (2023-11-12)
616

717
## Bug Fixes

packages/create-discord-bot/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "create-discord-bot",
4-
"version": "0.2.2",
4+
"version": "0.2.3",
55
"description": "A simple way to create a startup Discord bot.",
66
"scripts": {
77
"build": "tsc --noEmit && tsup",

packages/create-discord-bot/template/Bun/JavaScript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"start": "bun run src/index.[REPLACE_IMPORT_EXT]"
1212
},
1313
"dependencies": {
14-
"@discordjs/core": "^1.0.1",
15-
"discord.js": "^14.13.0"
14+
"@discordjs/core": "^1.1.0",
15+
"discord.js": "^14.14.0"
1616
},
1717
"devDependencies": {
1818
"@sapphire/ts-config": "^4.0.1",

packages/create-discord-bot/template/Bun/TypeScript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"start": "bun run src/index.[REPLACE_IMPORT_EXT]"
1212
},
1313
"dependencies": {
14-
"@discordjs/core": "^1.0.1",
15-
"discord.js": "^14.13.0"
14+
"@discordjs/core": "^1.1.0",
15+
"discord.js": "^14.14.0"
1616
},
1717
"devDependencies": {
1818
"@sapphire/ts-config": "^5.0.0",

packages/create-discord-bot/template/Deno/src/commands/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { RESTPostAPIApplicationCommandsJSONBody, CommandInteraction } from 'npm:discord.js@^14.13.0';
1+
import type { RESTPostAPIApplicationCommandsJSONBody, CommandInteraction } from 'npm:discord.js@^14.14.0';
22
import type { StructurePredicate } from '../util/loaders.ts';
33

44
/**

packages/create-discord-bot/template/Deno/src/events/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ClientEvents } from 'npm:discord.js@^14.13.0';
1+
import type { ClientEvents } from 'npm:discord.js@^14.14.0';
22
import type { StructurePredicate } from '../util/loaders.ts';
33

44
/**

packages/create-discord-bot/template/Deno/src/events/ready.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Events } from 'npm:discord.js@^14.13.0';
1+
import { Events } from 'npm:discord.js@^14.14.0';
22
import type { Event } from './index.ts';
33

44
export default {

packages/create-discord-bot/template/Deno/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import 'https://deno.land/[email protected]/dotenv/load.ts';
22
import { URL } from 'node:url';
3-
import { Client, GatewayIntentBits } from 'npm:discord.js@^14.13.0';
3+
import { Client, GatewayIntentBits } from 'npm:discord.js@^14.14.0';
44
import { loadCommands, loadEvents } from './util/loaders.ts';
55
import { registerEvents } from './util/registerEvents.ts';
66

packages/create-discord-bot/template/Deno/src/util/deploy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'https://deno.land/[email protected]/dotenv/load.ts';
22
import { URL } from 'node:url';
3-
import { API } from 'npm:@discordjs/core@^1.0.1/http-only';
4-
import { REST } from 'npm:discord.js@^14.13.0';
3+
import { API } from 'npm:@discordjs/core@^1.1.0/http-only';
4+
import { REST } from 'npm:discord.js@^14.14.0';
55
import { loadCommands } from './loaders.ts';
66

77
const commands = await loadCommands(new URL('../commands/', import.meta.url));

packages/create-discord-bot/template/Deno/src/util/registerEvents.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Events, type Client } from 'npm:discord.js@^14.13.0';
1+
import { Events, type Client } from 'npm:discord.js@^14.14.0';
22
import type { Command } from '../commands/index.ts';
33
import type { Event } from '../events/index.ts';
44

0 commit comments

Comments
 (0)