Skip to content

Commit f1b0757

Browse files
committed
fix(0.0.2): updated /sourcecode and renamed server to api
1 parent 3970f2d commit f1b0757

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

.github/workflows/lockb.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: 'Dependabot: Update bun.lockb'
55
on:
66
pull_request:
77
paths:
8-
- "package-lock.json"
8+
- "package.json"
99

1010
permissions:
1111
contents: write
File renamed without changes.

bot/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const commands: Record<string, Command> = {
6969
await interaction
7070
.reply({
7171
ephemeral: true,
72-
content: `[Github repository](https://github.com/GalvinPython/discord-autopublish)`,
72+
content: `[Github repository](https://github.com/GalvinPython/chatr)`,
7373
})
7474
.catch(console.error);
7575
},

bot/utils/handleLevelChange.ts

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

33
export async function checkIfGuildHasUpdatesEnabled(guild: string) {
44
const response = await fetch(`http://localhost:18103/admin/${guild}/updates/check`);
5+
// just to shut up eslint
6+
console.log(response)
57
}

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
{
22
"name": "xpbot",
3-
"module": "index.ts",
43
"type": "module",
5-
"version": "0.0.1",
4+
"version": "0.0.2",
5+
"scripts": {
6+
"api": "bun --watch api/index.js",
7+
"bot": "bun --watch bot/index.ts"
8+
},
69
"devDependencies": {
710
"@eslint/js": "^9.5.0",
811
"@types/bun": "latest",

0 commit comments

Comments
 (0)