chore: bump version to 2.21.9 and update dependencies across multiple packages (#420)

- Updated application version from 2.21.8 to 2.21.9 in package.json.
- Upgraded dependencies including prettier to version 3.7.4, @supabase/supabase-js to version 2.86.0, and @tanstack/react-query to version 5.90.11.
- Adjusted various package.json files to reflect updated versions for lucide-react, react-hook-form, and nodemailer.
- Enhanced pnpm-lock.yaml and pnpm-workspace.yaml for consistency in package versions.
- Refactored import statements in several components for improved readability.
This commit is contained in:
Giancarlo Buomprisco
2025-12-03 14:04:54 +08:00
committed by GitHub
parent 57d7b0f02f
commit c77c380c9c
42 changed files with 1490 additions and 1695 deletions

View File

@@ -16,7 +16,7 @@
"./config/server": "./src/sentry.client.server.ts"
},
"dependencies": {
"@sentry/nextjs": "^10.26.0"
"@sentry/nextjs": "^10.28.0"
},
"devDependencies": {
"@kit/eslint-config": "workspace:*",

View File

@@ -49,17 +49,15 @@ export class SentryMonitoringService implements MonitoringService {
process.env.NEXT_PUBLIC_SENTRY_ENVIRONMENT ?? process.env.VERCEL_ENV;
if (typeof document !== 'undefined') {
const { initializeSentryBrowserClient } = await import(
'../sentry.client.config'
);
const { initializeSentryBrowserClient } =
await import('../sentry.client.config');
initializeSentryBrowserClient({
environment,
});
} else {
const { initializeSentryServerClient } = await import(
'../sentry.server.config'
);
const { initializeSentryServerClient } =
await import('../sentry.server.config');
initializeSentryServerClient({
environment,