Skip to content

Commit

Permalink
Merge branch 'main' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
manudeli authored Mar 2, 2025
2 parents 3419e47 + ad3fb2b commit 8025ff3
Show file tree
Hide file tree
Showing 8 changed files with 1,562 additions and 1,778 deletions.
14 changes: 7 additions & 7 deletions configs/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@
"clean": "rimraf ./dist && rimraf ./coverage && rimraf ./node_modules"
},
"dependencies": {
"@cspell/eslint-plugin": "^8.17.2",
"@eslint-react/eslint-plugin": "^1.23.2",
"@cspell/eslint-plugin": "^8.17.5",
"@eslint-react/eslint-plugin": "^1.29.0",
"@next/eslint-plugin-next": "catalog:",
"@vitest/eslint-plugin": "^1.1.25",
"eslint-config-prettier": "^10.0.1",
"@vitest/eslint-plugin": "^1.1.36",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsdoc": "^50.6.2",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react-compiler": "19.0.0-beta-e552027-20250112",
"eslint-plugin-react-hooks": "^5.1.0",
"typescript-eslint": "^8.20.0"
"eslint-plugin-react-hooks": "^5.2.0",
"typescript-eslint": "^8.25.0"
}
}
12 changes: 6 additions & 6 deletions docs/suspensive.org/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,23 @@
"start": "next start -p 4000"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.19.10",
"@next/third-parties": "^15.1.6",
"@codesandbox/sandpack-react": "^2.20.0",
"@next/third-parties": "^15.2.0",
"@suspensive/react": "workspace:*",
"@suspensive/react-query-4": "workspace:*",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-query-devtools": "^4.36.1",
"codehike": "^1.0.4",
"d3": "^7.9.0",
"motion": "^11.13.5",
"motion": "^12.4.7",
"next": "catalog:",
"nextra": "^4.1.0",
"nextra-theme-docs": "^4.1.0",
"nextra": "^4.2.13",
"nextra-theme-docs": "^4.2.13",
"react": "catalog:react19",
"react-dom": "catalog:react19",
"remark-sandpack": "^0.0.5",
"sharp": "catalog:",
"zod": "^3.24.1"
"zod": "^3.24.2"
},
"devDependencies": {
"@suspensive/eslint-config": "workspace:*",
Expand Down
8 changes: 4 additions & 4 deletions docs/suspensive.org/src/app/[lang]/[[...mdxPath]]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import type { Heading, NextraMetadata } from 'nextra'
import type { $NextraMetadata, Heading } from 'nextra'
import { generateStaticParamsFor, importPage } from 'nextra/pages'
import { FadeIn } from './FadeIn'
import { useMDXComponents } from '@/mdx-components'

type Page = {
toc: Array<Heading>
metadata: NextraMetadata
metadata: $NextraMetadata
default: React.ComponentType<{ params: Awaited<PageProps['params']> }>
}
export const generateStaticParams = generateStaticParamsFor('mdxPath')

type PageProps = Readonly<{
params: Promise<{ mdxPath?: string[]; lang: string }>
params: Promise<{ mdxPath: string[]; lang: string }>
}>
export const generateMetadata = async (props: PageProps) => {
const params = await props.params
Expand All @@ -29,7 +29,7 @@ export default async function Page(props: PageProps) {
{page.metadata.filePath.includes('index.mdx') ? (
<page.default {...props} params={params} />
) : (
<FadeIn key={params.mdxPath?.join('/')}>
<FadeIn key={params.mdxPath.join('/')}>
<page.default {...props} params={params} />
</FadeIn>
)}
Expand Down
1 change: 1 addition & 0 deletions docs/suspensive.org/src/content/en/_meta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export default {
display: 'hidden',
theme: {
layout: 'full',
toc: false,
},
},
docs: {
Expand Down
1 change: 1 addition & 0 deletions docs/suspensive.org/src/content/ko/_meta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export default {
display: 'hidden',
theme: {
layout: 'full',
toc: false,
},
},
docs: {
Expand Down
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,37 +41,37 @@
"start": "turbo run start"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@arethetypeswrong/cli": "^0.17.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.1",
"@vitest/browser": "^3.0.2",
"@vitest/coverage-istanbul": "^3.0.2",
"@vitest/coverage-v8": "^3.0.2",
"@vitest/ui": "^3.0.2",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.8",
"@vitest/browser": "^3.0.7",
"@vitest/coverage-istanbul": "^3.0.7",
"@vitest/coverage-v8": "^3.0.7",
"@vitest/ui": "^3.0.7",
"broken-link-checker": "^0.7.8",
"eslint": "^9.17.0",
"eslint": "^9.21.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"knip": "^5.42.0",
"lint-staged": "^15.3.0",
"knip": "^5.45.0",
"lint-staged": "^15.4.3",
"ms": "3.0.0-canary.1",
"packlint": "^0.2.4",
"playwright": "^1.49.1",
"prettier": "^3.4.2",
"publint": "^0.2.12",
"playwright": "^1.50.1",
"prettier": "^3.5.2",
"publint": "^0.3.7",
"rimraf": "^6.0.1",
"sherif": "^1.1.1",
"tsup": "^8.3.5",
"turbo": "^2.3.3",
"sherif": "^1.4.0",
"tsup": "^8.4.0",
"turbo": "^2.4.4",
"typescript": "^5.7.2",
"vite": "^6.0.9",
"vitest": "^3.0.2"
"vite": "^6.2.0",
"vitest": "^3.0.7"
}
}
Loading

0 comments on commit 8025ff3

Please sign in to comment.