mirror of
https://github.com/xHyroM/bun-discord-bot.git
synced 2024-11-10 01:08:07 +01:00
chore: update deps
This commit is contained in:
parent
77e4c64e16
commit
7abc71d4e5
3 changed files with 4 additions and 4 deletions
BIN
bun.lockb
BIN
bun.lockb
Binary file not shown.
|
@ -7,11 +7,11 @@
|
|||
"cloudflare:tunnel": "sudo cloudflared tunnel run"
|
||||
},
|
||||
"devDependencies": {
|
||||
"bun-types": "^0.1.2"
|
||||
"bun-types": "^0.1.8"
|
||||
},
|
||||
"dependencies": {
|
||||
"@discordjs/collection": "^0.7.0",
|
||||
"bun-utilities": "^0.1.3",
|
||||
"bun-utilities": "^0.2.1",
|
||||
"create-hmac": "^1.1.7",
|
||||
"discord-api-types": "^0.36.1",
|
||||
"hono": "^1.6.4",
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import { InteractionResponseType, MessageFlags } from 'discord-api-types/v10';
|
||||
import { Command } from '../structures/Command';
|
||||
import { exec } from 'bun-utilities';
|
||||
import { exec } from 'bun-utilities/spawn';
|
||||
|
||||
const commitHash = (await exec(['git', 'log', '--pretty=format:\'%h\'', '-n', '1'])).stdout.replaceAll('\'', '');
|
||||
const commitHash = exec(['git', 'log', '--pretty=format:\'%h\'', '-n', '1']).stdout.replaceAll('\'', '');
|
||||
|
||||
new Command({
|
||||
name: 'version',
|
||||
|
|
Loading…
Reference in a new issue