Skip to content

Commit 1d62b97

Browse files
committed
chore: fix dependencies
1 parent 45c9036 commit 1d62b97

File tree

3 files changed

+2538
-4673
lines changed

3 files changed

+2538
-4673
lines changed

apps/site/hooks/react-generic/useSiteNavigation.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { useTranslations } from 'next-intl';
21
import type { RichTranslationValues } from 'next-intl';
2+
import { useTranslations } from 'next-intl';
33
import type { HTMLAttributeAnchorTarget } from 'react';
44

55
import { siteNavigation } from '@/next.json.mjs';
@@ -39,7 +39,7 @@ const useSiteNavigation = () => {
3939

4040
const mapNavigationEntries = (entries: Navigation, context: Context = {}) => {
4141
const getFormattedMessage = (label: string, key: string) =>
42-
t.rich(label, context[key] || {});
42+
t.rich(label, context[key] || {}) as FormattedMessage;
4343

4444
return Object.entries(entries).map(
4545
([key, { label, link, items, target }]): [

apps/site/package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"@heroicons/react": "~2.1.5",
4040
"@mdx-js/mdx": "^3.1.0",
4141
"@node-core/website-i18n": "*",
42-
"@nodevu/core": "~0.1.0",
42+
"@nodevu/core": "^0.1.0",
4343
"@orama/highlight": "^0.1.6",
4444
"@oramacloud/client": "^1.3.19",
4545
"@radix-ui/react-accessible-icon": "^1.1.0",
@@ -53,10 +53,10 @@
5353
"@radix-ui/react-tabs": "^1.1.1",
5454
"@radix-ui/react-toast": "^1.2.2",
5555
"@savvywombat/tailwindcss-grid-areas": "~4.0.0",
56-
"@sentry/nextjs": "^8.35.0",
57-
"@tailwindcss/container-queries": "~0.1.1",
56+
"@sentry/nextjs": "^8.36.0",
57+
"@tailwindcss/container-queries": "^0.1.1",
5858
"@types/node": "20.16.5",
59-
"@vcarl/remark-headings": "~0.1.0",
59+
"@vcarl/remark-headings": "^0.1.0",
6060
"@vercel/analytics": "~1.3.2",
6161
"@vercel/speed-insights": "~1.0.14",
6262
"autoprefixer": "~10.4.20",
@@ -69,7 +69,7 @@
6969
"gray-matter": "~4.0.3",
7070
"next": "15.0.2",
7171
"next-intl": "~3.23.5",
72-
"next-themes": "~0.3.0",
72+
"next-themes": "^0.3.0",
7373
"postcss": "~8.4.47",
7474
"postcss-calc": "~10.0.2",
7575
"postcss-import": "~16.1.0",
@@ -91,11 +91,11 @@
9191
"devDependencies": {
9292
"@eslint/compat": "~1.2.2",
9393
"@next/eslint-plugin-next": "15.0.2",
94-
"@storybook/addon-controls": "~8.3.6",
95-
"@storybook/addon-interactions": "~8.3.6",
96-
"@storybook/addon-themes": "~8.3.6",
97-
"@storybook/addon-viewport": "~8.3.6",
98-
"@storybook/nextjs": "~8.3.6",
94+
"@storybook/addon-controls": "^8.4.0",
95+
"@storybook/addon-interactions": "^8.4.0",
96+
"@storybook/addon-themes": "^8.4.0",
97+
"@storybook/addon-viewport": "^8.4.0",
98+
"@storybook/nextjs": "^8.4.0",
9999
"@testing-library/jest-dom": "~6.6.2",
100100
"@testing-library/react": "~16.0.1",
101101
"@testing-library/user-event": "~14.5.2",
@@ -115,7 +115,7 @@
115115
"jest-junit": "16.0.0",
116116
"remark-frontmatter": "5.0.0",
117117
"remark-preset-lint-node": "5.1.2",
118-
"storybook": "~8.3.6",
118+
"storybook": "^8.4.0",
119119
"stylelint": "16.10.0",
120120
"stylelint-config-standard": "36.0.1",
121121
"stylelint-order": "6.0.4",

0 commit comments

Comments
 (0)