Skip to content

Commit 3ea3b3a

Browse files
fix(deps): update dependency gradient-string to v3 (#102)
* fix(deps): update dependency gradient-string to v3 * chore: update dependencies --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Aura Román <kyradiscord@gmail.com>
1 parent c5f9e98 commit 3ea3b3a

File tree

11 files changed

+3397
-3595
lines changed

11 files changed

+3397
-3595
lines changed

apps/acryss/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
},
1717
"dependencies": {
1818
"@discordjs/collection": "^1.5.3",
19-
"@prisma/client": "^5.10.2",
20-
"@sapphire/utilities": "3.15.3",
19+
"@prisma/client": "^5.20.0",
20+
"@sapphire/utilities": "3.17.0",
2121
"@skyra/env-utilities": "^1.3.0",
2222
"@skyra/internal": "workspace:^",
2323
"@skyra/logger": "^2.0.3",
2424
"@skyra/start-banner": "^2.0.1",
25-
"tslib": "^2.6.2"
25+
"tslib": "^2.7.0"
2626
},
2727
"devDependencies": {
28-
"prisma": "^5.10.2",
29-
"typescript": "^5.3.3"
28+
"prisma": "^5.20.0",
29+
"typescript": "^5.6.2"
3030
}
3131
}

apps/frontend/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
"format": "prettier --write ."
1212
},
1313
"devDependencies": {
14-
"@nuxtjs/tailwindcss": "^6.11.4",
15-
"@sidebase/nuxt-auth": "^0.5.0",
14+
"@nuxtjs/tailwindcss": "^6.12.1",
15+
"@sidebase/nuxt-auth": "^0.9.3",
1616
"@skyra/internal": "workspace:^",
17-
"@tailwindcss/typography": "^0.5.10",
18-
"@vite-pwa/nuxt": "^0.5.0",
19-
"next-auth": "^4.24.6",
20-
"nuxt": "^3.10.3",
21-
"sitemap": "^7.1.1",
22-
"typescript": "^5.3.3",
23-
"vite-plugin-pwa": "^0.19.2",
24-
"vue-tsc": "2.0.3"
17+
"@tailwindcss/typography": "^0.5.15",
18+
"@vite-pwa/nuxt": "^0.10.5",
19+
"next-auth": "^4.24.8",
20+
"nuxt": "^3.13.2",
21+
"sitemap": "^8.0.0",
22+
"typescript": "^5.6.2",
23+
"vite-plugin-pwa": "^0.20.5",
24+
"vue-tsc": "2.1.6"
2525
}
2626
}

apps/nayre/package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,19 @@
1414
"lint": "eslint --fix --ext ts src"
1515
},
1616
"dependencies": {
17-
"@discordjs/builders": "^1.7.0",
17+
"@discordjs/builders": "^1.9.0",
1818
"@discordjs/collection": "^1.5.3",
1919
"@skyra/env-utilities": "^1.3.0",
20-
"@skyra/http-framework": "^1.2.2",
20+
"@skyra/http-framework": "^2.1.0",
2121
"@skyra/http-framework-i18n": "^1.2.0",
2222
"@skyra/internal": "workspace:^",
2323
"@skyra/logger": "^2.0.3",
2424
"@skyra/shared-http-pieces": "^1.2.2",
2525
"@skyra/start-banner": "^2.0.1",
26-
"discord-api-types": "^0.37.71",
27-
"gradient-string": "^2.0.2",
28-
"tslib": "^2.6.2"
26+
"discord-api-types": "^0.37.101",
27+
"tslib": "^2.7.0"
2928
},
3029
"devDependencies": {
31-
"typescript": "^5.3.3"
30+
"typescript": "^5.6.2"
3231
}
3332
}

apps/nayre/src/commands/planet.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { LanguageKeys } from '#lib/i18n/LanguageKeys';
22
import { acryssRequest } from '#lib/utilities/acryss';
33
import { inlineCode } from '@discordjs/builders';
4-
import { Command, RegisterCommand, RegisterSubCommand } from '@skyra/http-framework';
4+
import { Command, RegisterCommand, RegisterSubcommand } from '@skyra/http-framework';
55
import { applyLocalizedBuilder, resolveUserKey } from '@skyra/http-framework-i18n';
66
import { Client, displayPlanetId, Server } from '@skyra/internal';
77
import { MessageFlags } from 'discord-api-types/v10';
@@ -23,7 +23,7 @@ export class UserCommand extends Command {
2323
});
2424
}
2525

26-
@RegisterSubCommand((builder) => applyLocalizedBuilder(builder, Root.Initialize))
26+
@RegisterSubcommand((builder) => applyLocalizedBuilder(builder, Root.Initialize))
2727
public async initialize(interaction: Command.ChatInputInteraction) {
2828
const response = await acryssRequest(interaction.user.id, Client.writePlayerCreate({ universeId: BigInt(interaction.guildId!) }));
2929
if (Server.isOk(response)) {
@@ -38,15 +38,15 @@ export class UserCommand extends Command {
3838
return interaction.reply({ content, flags: MessageFlags.Ephemeral });
3939
}
4040

41-
@RegisterSubCommand((builder) =>
41+
@RegisterSubcommand((builder) =>
4242
applyLocalizedBuilder(builder, Root.Get) //
4343
.addStringOption((builder) => applyLocalizedBuilder(builder, Root.OptionsPlanet).setAutocomplete(true).setRequired(true))
4444
)
4545
public get(interaction: Command.ChatInputInteraction) {
4646
void interaction;
4747
}
4848

49-
@RegisterSubCommand((builder) =>
49+
@RegisterSubcommand((builder) =>
5050
applyLocalizedBuilder(builder, Root.Edit)
5151
.addStringOption((builder) => applyLocalizedBuilder(builder, Root.OptionsPlanet).setAutocomplete(true).setRequired(true))
5252
.addStringOption((builder) => applyLocalizedBuilder(builder, Root.OptionsName))
@@ -55,7 +55,7 @@ export class UserCommand extends Command {
5555
void interaction;
5656
}
5757

58-
@RegisterSubCommand((builder) => applyLocalizedBuilder(builder, Root.List))
58+
@RegisterSubcommand((builder) => applyLocalizedBuilder(builder, Root.List))
5959
public list(interaction: Command.ChatInputInteraction) {
6060
void interaction;
6161
}

apps/nayre/src/commands/universe.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { LanguageKeys } from '#lib/i18n/LanguageKeys';
22
import { acryssRequest } from '#lib/utilities/acryss';
3-
import { Command, RegisterCommand, RegisterSubCommand } from '@skyra/http-framework';
3+
import { Command, RegisterCommand, RegisterSubcommand } from '@skyra/http-framework';
44
import { applyLocalizedBuilder, resolveUserKey } from '@skyra/http-framework-i18n';
55
import { Client, MaximumSystems, Server } from '@skyra/internal';
66
import { MessageFlags, PermissionFlagsBits, Routes, type RESTGetAPIGuildResult } from 'discord-api-types/v10';
@@ -13,7 +13,7 @@ const Root = LanguageKeys.Commands.Universe;
1313
.setDMPermission(false)
1414
)
1515
export class UserCommand extends Command {
16-
@RegisterSubCommand((builder) =>
16+
@RegisterSubcommand((builder) =>
1717
applyLocalizedBuilder(builder, Root.Initialize)
1818
.addIntegerOption((builder) => applyLocalizedBuilder(builder, Root.OptionsSystems).setMinValue(5).setMaxValue(MaximumSystems))
1919
.addStringOption((builder) => applyLocalizedBuilder(builder, Root.OptionsName).setMinLength(2).setMaxLength(64))

apps/nayre/src/lib/utilities/register-commands.ts

Lines changed: 0 additions & 12 deletions
This file was deleted.

apps/nayre/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { setup } from '#lib/setup/all';
2-
import { registerCommands } from '#lib/utilities/register-commands';
32
import { envParseInteger, envParseString } from '@skyra/env-utilities';
43
import { Client, container } from '@skyra/http-framework';
54
import { init, load } from '@skyra/http-framework-i18n';
5+
import { registerCommands } from '@skyra/shared-http-pieces';
66

77
setup();
88

package.json

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,27 +21,26 @@
2121
"postinstall": "yarn workspace @skyra/acryss prisma:generate"
2222
},
2323
"devDependencies": {
24-
"@commitlint/cli": "^19.0.3",
25-
"@commitlint/config-conventional": "^19.0.3",
26-
"@prettier/plugin-xml": "^3.3.1",
27-
"@sapphire/eslint-config": "^5.0.3",
24+
"@commitlint/cli": "^19.5.0",
25+
"@commitlint/config-conventional": "^19.5.0",
26+
"@prettier/plugin-xml": "^3.4.1",
27+
"@sapphire/eslint-config": "^5.0.5",
2828
"@sapphire/prettier-config": "^2.0.0",
29-
"@sapphire/ts-config": "^5.0.0",
30-
"@types/gradient-string": "^1.1.5",
31-
"@types/node": "^20.11.24",
32-
"@typescript-eslint/eslint-plugin": "^7.1.0",
33-
"@typescript-eslint/parser": "^7.1.0",
29+
"@sapphire/ts-config": "^5.0.1",
30+
"@types/node": "^20.16.10",
31+
"@typescript-eslint/eslint-plugin": "^8.7.0",
32+
"@typescript-eslint/parser": "^8.7.0",
3433
"cz-conventional-changelog": "^3.3.0",
35-
"eslint": "^8.57.0",
34+
"eslint": "^8.57.1",
3635
"eslint-config-prettier": "^9.1.0",
37-
"eslint-plugin-prettier": "^5.1.3",
38-
"lint-staged": "^15.2.2",
39-
"prettier": "^3.2.5",
40-
"prettier-plugin-tailwindcss": "^0.5.11",
41-
"turbo": "^1.12.4",
42-
"typescript": "^5.3.3",
43-
"vite": "^5.1.4",
44-
"vitest": "^1.3.1"
36+
"eslint-plugin-prettier": "^5.2.1",
37+
"lint-staged": "^15.2.10",
38+
"prettier": "^3.3.3",
39+
"prettier-plugin-tailwindcss": "^0.6.8",
40+
"turbo": "^2.1.2",
41+
"typescript": "~5.4.5",
42+
"vite": "^5.4.8",
43+
"vitest": "^2.1.1"
4544
},
4645
"resolutions": {
4746
"ansi-regex": "^5.0.1",

packages/internal/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
},
1919
"dependencies": {
2020
"@discordjs/collection": "^1.5.3",
21-
"@sapphire/utilities": "3.15.3",
21+
"@sapphire/utilities": "3.17.0",
2222
"@skyra/env-utilities": "^1.3.0",
23-
"tslib": "^2.6.2"
23+
"tslib": "^2.7.0"
2424
},
2525
"devDependencies": {
26-
"typescript": "^5.3.3",
27-
"vitest": "^1.3.1"
26+
"typescript": "^5.6.2",
27+
"vitest": "^2.1.1"
2828
}
2929
}

turbo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
3-
"pipeline": {
3+
"tasks": {
44
"build": {
55
"dependsOn": ["^build"],
66
"outputs": ["dist/**", ".output/**"]

0 commit comments

Comments
 (0)