Skip to content

Commit 0bcb7e7

Browse files
committed
Fix build error
- update package
1 parent b21afbd commit 0bcb7e7

File tree

18 files changed

+1077
-1372
lines changed

18 files changed

+1077
-1372
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ jobs:
4646
pnpm -F components build-storybook
4747
mv ./packages/components/storybook-static ./apps/landing/public/storybook
4848
pnpm -F landing build
49-
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
5049
- name: Upload artifact
5150
uses: actions/upload-pages-artifact@v3
5251
with:

apps/landing/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
"@devup-ui/react": "workspace:*",
1616
"@mdx-js/loader": "^3.1.0",
1717
"@mdx-js/react": "^3.1.0",
18-
"@next/mdx": "^15.3.4",
18+
"@next/mdx": "^15.3.5",
1919
"@types/mdx": "^2.0.13",
2020
"body-scroll-lock": "3.1.5",
2121
"clsx": "^2.1.1",
22-
"next": "^15.3.4",
22+
"next": "^15.3.5",
2323
"react": "^19.1.0",
2424
"react-dom": "^19.1.0",
25-
"react-markdown": "8.0.6",
25+
"react-markdown": "10.1.0",
2626
"react-syntax-highlighter": "^15.6.1",
2727
"remark-gfm": "^4.0.1",
2828
"sanitize.css": "^13.0.0"

apps/landing/src/app/(detail)/components/MdxCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export default async function MdxCard({
6060
>
6161
<VStack gap="30px" px="24px" py="32px">
6262
<Box>{demo}</Box>
63-
<ReactMarkdown components={_components}>
63+
<ReactMarkdown components={_components as any}>
6464
{normalizedComment ?? ''}
6565
</ReactMarkdown>
6666
</VStack>

apps/landing/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
"noEmit": true,
1313
"esModuleInterop": true,
1414
"module": "esnext",
15-
"moduleResolution": "bundler",
1615
"resolveJsonModule": true,
1716
"isolatedModules": true,
1817
"jsx": "preserve",
1918
"incremental": true,
19+
"moduleResolution": "node",
2020
"plugins": [
2121
{
2222
"name": "next"

apps/next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"react": "^19.1.0",
1414
"react-dom": "^19.1.0",
15-
"next": "^15.3.4",
15+
"next": "^15.3.5",
1616
"@devup-ui/react": "workspace:*"
1717
},
1818
"devDependencies": {

apps/rsbuild/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"@devup-ui/react": "workspace:*"
1616
},
1717
"devDependencies": {
18-
"@rsbuild/core": "^1.4.2",
19-
"@rsbuild/plugin-react": "^1.3.2",
18+
"@rsbuild/core": "^1.4.5",
19+
"@rsbuild/plugin-react": "^1.3.4",
2020
"@devup-ui/rsbuild-plugin": "workspace:*"
2121
}
2222
}

apps/vite-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"dependencies": {
1515
"react": "^19.1.0",
1616
"@devup-ui/react": "workspace:*",
17-
"vite": "^7.0.0"
17+
"vite": "^7.0.3"
1818
},
1919
"devDependencies": {
2020
"vite-plugin-dts": "^4.5.4",

apps/vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"devDependencies": {
1919
"@devup-ui/vite-plugin": "workspace:*",
20-
"vite": "^7.0.0",
20+
"vite": "^7.0.3",
2121
"@vitejs/plugin-react": "^4.6.0",
2222
"typescript": "^5",
2323
"@types/node": "^24",

benchmark/next-chakra-ui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"lint": "next lint"
1111
},
1212
"dependencies": {
13-
"@chakra-ui/react": "^3.21.1",
13+
"@chakra-ui/react": "^3.22.0",
1414
"@emotion/react": "^11.14.0",
15-
"next": "^15.3.4",
15+
"next": "^15.3.5",
1616
"next-themes": "^0.4.6",
1717
"react": "^19.1.0",
1818
"react-dom": "^19.1.0",

benchmark/next-devup-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"react": "^19.1.0",
1414
"react-dom": "^19.1.0",
15-
"next": "^15.3.4",
15+
"next": "^15.3.5",
1616
"@devup-ui/react": "workspace:*"
1717
},
1818
"devDependencies": {

0 commit comments

Comments
 (0)