Skip to content

Commit

Permalink
fix(deps): update dependency gradient-string to v3 (#102)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
  • Loading branch information
renovate[bot] and kyranet authored Sep 29, 2024
1 parent c5f9e98 commit 3ea3b3a
Show file tree
Hide file tree
Showing 11 changed files with 3,397 additions and 3,595 deletions.
10 changes: 5 additions & 5 deletions apps/acryss/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
},
"dependencies": {
"@discordjs/collection": "^1.5.3",
"@prisma/client": "^5.10.2",
"@sapphire/utilities": "3.15.3",
"@prisma/client": "^5.20.0",
"@sapphire/utilities": "3.17.0",
"@skyra/env-utilities": "^1.3.0",
"@skyra/internal": "workspace:^",
"@skyra/logger": "^2.0.3",
"@skyra/start-banner": "^2.0.1",
"tslib": "^2.6.2"
"tslib": "^2.7.0"
},
"devDependencies": {
"prisma": "^5.10.2",
"typescript": "^5.3.3"
"prisma": "^5.20.0",
"typescript": "^5.6.2"
}
}
20 changes: 10 additions & 10 deletions apps/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
"format": "prettier --write ."
},
"devDependencies": {
"@nuxtjs/tailwindcss": "^6.11.4",
"@sidebase/nuxt-auth": "^0.5.0",
"@nuxtjs/tailwindcss": "^6.12.1",
"@sidebase/nuxt-auth": "^0.9.3",
"@skyra/internal": "workspace:^",
"@tailwindcss/typography": "^0.5.10",
"@vite-pwa/nuxt": "^0.5.0",
"next-auth": "^4.24.6",
"nuxt": "^3.10.3",
"sitemap": "^7.1.1",
"typescript": "^5.3.3",
"vite-plugin-pwa": "^0.19.2",
"vue-tsc": "2.0.3"
"@tailwindcss/typography": "^0.5.15",
"@vite-pwa/nuxt": "^0.10.5",
"next-auth": "^4.24.8",
"nuxt": "^3.13.2",
"sitemap": "^8.0.0",
"typescript": "^5.6.2",
"vite-plugin-pwa": "^0.20.5",
"vue-tsc": "2.1.6"
}
}
11 changes: 5 additions & 6 deletions apps/nayre/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,19 @@
"lint": "eslint --fix --ext ts src"
},
"dependencies": {
"@discordjs/builders": "^1.7.0",
"@discordjs/builders": "^1.9.0",
"@discordjs/collection": "^1.5.3",
"@skyra/env-utilities": "^1.3.0",
"@skyra/http-framework": "^1.2.2",
"@skyra/http-framework": "^2.1.0",
"@skyra/http-framework-i18n": "^1.2.0",
"@skyra/internal": "workspace:^",
"@skyra/logger": "^2.0.3",
"@skyra/shared-http-pieces": "^1.2.2",
"@skyra/start-banner": "^2.0.1",
"discord-api-types": "^0.37.71",
"gradient-string": "^2.0.2",
"tslib": "^2.6.2"
"discord-api-types": "^0.37.101",
"tslib": "^2.7.0"
},
"devDependencies": {
"typescript": "^5.3.3"
"typescript": "^5.6.2"
}
}
10 changes: 5 additions & 5 deletions apps/nayre/src/commands/planet.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { LanguageKeys } from '#lib/i18n/LanguageKeys';
import { acryssRequest } from '#lib/utilities/acryss';
import { inlineCode } from '@discordjs/builders';
import { Command, RegisterCommand, RegisterSubCommand } from '@skyra/http-framework';
import { Command, RegisterCommand, RegisterSubcommand } from '@skyra/http-framework';
import { applyLocalizedBuilder, resolveUserKey } from '@skyra/http-framework-i18n';
import { Client, displayPlanetId, Server } from '@skyra/internal';
import { MessageFlags } from 'discord-api-types/v10';
Expand All @@ -23,7 +23,7 @@ export class UserCommand extends Command {
});
}

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

@RegisterSubCommand((builder) =>
@RegisterSubcommand((builder) =>
applyLocalizedBuilder(builder, Root.Get) //
.addStringOption((builder) => applyLocalizedBuilder(builder, Root.OptionsPlanet).setAutocomplete(true).setRequired(true))
)
public get(interaction: Command.ChatInputInteraction) {
void interaction;
}

@RegisterSubCommand((builder) =>
@RegisterSubcommand((builder) =>
applyLocalizedBuilder(builder, Root.Edit)
.addStringOption((builder) => applyLocalizedBuilder(builder, Root.OptionsPlanet).setAutocomplete(true).setRequired(true))
.addStringOption((builder) => applyLocalizedBuilder(builder, Root.OptionsName))
Expand All @@ -55,7 +55,7 @@ export class UserCommand extends Command {
void interaction;
}

@RegisterSubCommand((builder) => applyLocalizedBuilder(builder, Root.List))
@RegisterSubcommand((builder) => applyLocalizedBuilder(builder, Root.List))
public list(interaction: Command.ChatInputInteraction) {
void interaction;
}
Expand Down
4 changes: 2 additions & 2 deletions apps/nayre/src/commands/universe.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { LanguageKeys } from '#lib/i18n/LanguageKeys';
import { acryssRequest } from '#lib/utilities/acryss';
import { Command, RegisterCommand, RegisterSubCommand } from '@skyra/http-framework';
import { Command, RegisterCommand, RegisterSubcommand } from '@skyra/http-framework';
import { applyLocalizedBuilder, resolveUserKey } from '@skyra/http-framework-i18n';
import { Client, MaximumSystems, Server } from '@skyra/internal';
import { MessageFlags, PermissionFlagsBits, Routes, type RESTGetAPIGuildResult } from 'discord-api-types/v10';
Expand All @@ -13,7 +13,7 @@ const Root = LanguageKeys.Commands.Universe;
.setDMPermission(false)
)
export class UserCommand extends Command {
@RegisterSubCommand((builder) =>
@RegisterSubcommand((builder) =>
applyLocalizedBuilder(builder, Root.Initialize)
.addIntegerOption((builder) => applyLocalizedBuilder(builder, Root.OptionsSystems).setMinValue(5).setMaxValue(MaximumSystems))
.addStringOption((builder) => applyLocalizedBuilder(builder, Root.OptionsName).setMinLength(2).setMaxLength(64))
Expand Down
12 changes: 0 additions & 12 deletions apps/nayre/src/lib/utilities/register-commands.ts

This file was deleted.

2 changes: 1 addition & 1 deletion apps/nayre/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { setup } from '#lib/setup/all';
import { registerCommands } from '#lib/utilities/register-commands';
import { envParseInteger, envParseString } from '@skyra/env-utilities';
import { Client, container } from '@skyra/http-framework';
import { init, load } from '@skyra/http-framework-i18n';
import { registerCommands } from '@skyra/shared-http-pieces';

setup();

Expand Down
35 changes: 17 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,27 +21,26 @@
"postinstall": "yarn workspace @skyra/acryss prisma:generate"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@prettier/plugin-xml": "^3.3.1",
"@sapphire/eslint-config": "^5.0.3",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@prettier/plugin-xml": "^3.4.1",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.0",
"@types/gradient-string": "^1.1.5",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^20.16.10",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vitest": "^1.3.1"
"eslint-plugin-prettier": "^5.2.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"turbo": "^2.1.2",
"typescript": "~5.4.5",
"vite": "^5.4.8",
"vitest": "^2.1.1"
},
"resolutions": {
"ansi-regex": "^5.0.1",
Expand Down
8 changes: 4 additions & 4 deletions packages/internal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
},
"dependencies": {
"@discordjs/collection": "^1.5.3",
"@sapphire/utilities": "3.15.3",
"@sapphire/utilities": "3.17.0",
"@skyra/env-utilities": "^1.3.0",
"tslib": "^2.6.2"
"tslib": "^2.7.0"
},
"devDependencies": {
"typescript": "^5.3.3",
"vitest": "^1.3.1"
"typescript": "^5.6.2",
"vitest": "^2.1.1"
}
}
2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".output/**"]
Expand Down
Loading

0 comments on commit 3ea3b3a

Please sign in to comment.