Skip to content

Commit

Permalink
build: Bump versions (discordjs#9986)
Browse files Browse the repository at this point in the history
fix: bump versions

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
Jiralite and kodiakhq[bot] authored Dec 30, 2023
1 parent ce84d3e commit 136c66c
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"start": "bun run src/index.[REPLACE_IMPORT_EXT]"
},
"dependencies": {
"@discordjs/core": "^1.1.0",
"discord.js": "^14.14.0"
"@discordjs/core": "^1.1.1",
"discord.js": "^14.14.1"
},
"devDependencies": {
"@sapphire/ts-config": "^4.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"start": "bun run src/index.[REPLACE_IMPORT_EXT]"
},
"dependencies": {
"@discordjs/core": "^1.1.0",
"discord.js": "^14.14.0"
"@discordjs/core": "^1.1.1",
"discord.js": "^14.14.1"
},
"devDependencies": {
"@sapphire/ts-config": "^5.0.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RESTPostAPIApplicationCommandsJSONBody, CommandInteraction } from 'npm:discord.js@^14.14.0';
import type { RESTPostAPIApplicationCommandsJSONBody, CommandInteraction } from 'npm:discord.js@^14.14.1';
import type { StructurePredicate } from '../util/loaders.ts';

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { ClientEvents } from 'npm:discord.js@^14.14.0';
import type { ClientEvents } from 'npm:discord.js@^14.14.1';
import type { StructurePredicate } from '../util/loaders.ts';

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Events } from 'npm:discord.js@^14.14.0';
import { Events } from 'npm:discord.js@^14.14.1';
import type { Event } from './index.ts';

export default {
Expand Down
2 changes: 1 addition & 1 deletion packages/create-discord-bot/template/Deno/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'https://deno.land/std@0.199.0/dotenv/load.ts';
import { URL } from 'node:url';
import { Client, GatewayIntentBits } from 'npm:discord.js@^14.14.0';
import { Client, GatewayIntentBits } from 'npm:discord.js@^14.14.1';
import { loadCommands, loadEvents } from './util/loaders.ts';
import { registerEvents } from './util/registerEvents.ts';

Expand Down
4 changes: 2 additions & 2 deletions packages/create-discord-bot/template/Deno/src/util/deploy.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'https://deno.land/std@0.199.0/dotenv/load.ts';
import { URL } from 'node:url';
import { API } from 'npm:@discordjs/core@^1.1.0/http-only';
import { REST } from 'npm:discord.js@^14.14.0';
import { API } from 'npm:@discordjs/core@^1.1.1/http-only';
import { REST } from 'npm:discord.js@^14.14.1';
import { loadCommands } from './loaders.ts';

const commands = await loadCommands(new URL('../commands/', import.meta.url));
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Events, type Client } from 'npm:discord.js@^14.14.0';
import { Events, type Client } from 'npm:discord.js@^14.14.1';
import type { Command } from '../commands/index.ts';
import type { Event } from '../events/index.ts';

Expand Down
4 changes: 2 additions & 2 deletions packages/create-discord-bot/template/JavaScript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"deploy": "node --require dotenv/config src/util/deploy.js"
},
"dependencies": {
"@discordjs/core": "^1.1.0",
"discord.js": "^14.14.0",
"@discordjs/core": "^1.1.1",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/create-discord-bot/template/TypeScript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"start": "node --require dotenv/config dist/index.js"
},
"dependencies": {
"@discordjs/core": "^1.1.0",
"discord.js": "^14.14.0",
"@discordjs/core": "^1.1.1",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1"
},
"devDependencies": {
Expand Down

0 comments on commit 136c66c

Please sign in to comment.