Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions docs/suspensive.org/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@
"author": "Jonghyeon Ko <jonghyeon@toss.im>",
"type": "module",
"scripts": {
"build": "next build && node scripts/llms-txt/generate-llms-txt.ts && pagefind --site .next/server/app --output-path public/_pagefind",
"build": "next build --webpack && node scripts/llms-txt/generate-llms-txt.ts && pagefind --site .next/server/app --output-path public/_pagefind",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

turbopack is default for next 16 but we cannot use it because of codehike plugin is not serializable

"ci:eslint": "eslint \"**/*.{ts,tsx,cts,mts,mdx}\"",
"ci:type": "tsc --noEmit",
"clean": "rimraf ./.next ./node_modules",
"dev": "next dev -p 4000",
"dev": "next dev -p 4000 --webpack",
"start": "next start -p 4000"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.20.0",
"@next/third-parties": "^15.5.12",
"@next/third-parties": "catalog:",
"@suspensive/react": "workspace:*",
"@suspensive/react-query-5": "workspace:*",
"@tanstack/react-query": "catalog:react-query5",
"@tanstack/react-query-devtools": "catalog:react-query5",
"clsx": "catalog:",
"codehike": "^1.0.7",
"codehike": "^1.1.0",
"d3": "^7.9.0",
"lucide-react": "^0.553.0",
"motion": "^12.37.0",
"next": "^15.5.12",
"lucide-react": "^0.577.0",
"motion": "^12.38.0",
"next": "catalog:",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We use next 16

"nextra": "^4.6.1",
"nextra-theme-docs": "^4.6.1",
"react": "catalog:react19",
Expand Down
5 changes: 3 additions & 2 deletions docs/suspensive.org/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"isolatedModules": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"jsx": "preserve",
"jsx": "react-jsx",
"module": "esnext",
"resolveJsonModule": true,
"paths": {
Expand All @@ -32,7 +32,8 @@
"next.config.mjs",
"postcss.config.js",
"prettier.config.mjs",
"theme.config.tsx"
"theme.config.tsx",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules"]
}
2 changes: 1 addition & 1 deletion examples/next-streaming-react-query/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"next": "catalog:",
"react": "catalog:react19",
"react-dom": "catalog:react19",
"zod": "^4.1.12"
"zod": "catalog:"
},
"devDependencies": {
"@suspensive/eslint-config": "workspace:*",
Expand Down
6 changes: 3 additions & 3 deletions examples/visualization/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
"@suspensive/react-query-5": "workspace:*",
"@tanstack/react-query": "catalog:react-query5",
"@tanstack/react-query-devtools": "catalog:react-query5",
"axios": "^1.8.4",
"axios": "^1.13.6",
"clsx": "catalog:",
"next": "catalog:",
"react": "catalog:react19",
"react-dom": "catalog:react19",
"react-error-boundary": "^6.0.0",
"react-error-boundary": "catalog:",
"usehooks-ts": "^3.1.1",
"zod": "^4.1.12"
"zod": "catalog:"
},
"devDependencies": {
"@suspensive/eslint-config": "workspace:*",
Expand Down
14 changes: 9 additions & 5 deletions knip.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"ignore": ["**/test-utils/**", "scripts/**"],
"ignore": ["**/test-utils/**"],
"ignoreDependencies": ["prettier-plugin-sort-re-exports"],
"workspaces": {
".": {
Expand All @@ -14,11 +14,15 @@
"ignoreDependencies": ["react-dom", "@types/react-dom"],
"ignore": ["**/utils/observe.ts"]
},
"packages/react-query": {
"ignore": ["**/bin/utils/package.ts"]
},
"packages/codemods": {
"ignore": ["**/testfixtures/**", "**/getTestfixtures.ts"]
"entry": ["src/bin/codemods.ts", "src/transforms/*.ts"],
"ignore": ["**/testfixtures/**"]
},
"packages/next": {
"entry": ["src/index.ts", "src/react-server.ts"]
},
"packages/react-query": {
"entry": ["src/index.ts", "src/bin/cli.ts", "src/v4.ts", "src/v5.ts"]
},
"examples/vite-react-18-suspense-prerender-siblings-problem": {
"ignoreDependencies": ["globals"]
Comment on lines 1 to 28
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

correctly

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,18 +50,18 @@
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jsdom": "^29.0.0",
"knip": "^5.87.0",
"knip": "^6.0.2",
"lint-staged": "^16.4.0",
"packlint": "^0.2.4",
"prettier": "^3.8.1",
"prettier-plugin-sort-re-exports": "^0.1.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"rimraf": "^6.1.3",
"sherif": "^1.10.0",
"sherif": "^1.11.0",
"tsdown": "^0.21.4",
"turbo": "^2.8.17",
"turbo": "^2.8.20",
"typescript": "^5.8.3",
"vite": "^8.0.0",
"vite": "^8.0.1",
"vitest": "^4.1.0"
}
}
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@types/react-dom": "catalog:react19",
"react": "catalog:react19",
"react-dom": "catalog:react19",
"react-error-boundary": "^6.0.0"
"react-error-boundary": "catalog:"
},
"peerDependencies": {
"react": "^18 || ^19"
Expand Down
Loading
Loading