Skip to content

Commit ef579ac

Browse files
authored
Merge pull request #5 from dev-five-git/main
ㅁㄴㅇㄹ
2 parents 44b5aea + 2695ea0 commit ef579ac

File tree

356 files changed

+6653
-3735
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

356 files changed

+6653
-3735
lines changed

Cargo.lock

Lines changed: 53 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ npm install @devup-ui/next-plugin
4242

4343
# on vite
4444
npm install @devup-ui/vite-plugin
45+
46+
# on rsbuild
47+
npm install @devup-ui/rsbuild-plugin
48+
49+
# on webpack
50+
npm install @devup-ui/webpack-plugin
4551
```
4652

4753
## Features

apps/landing/next.config.ts

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,8 @@ const withMDX = createMDX({
1010
})
1111

1212
export default withMDX(
13-
DevupUI(
14-
{
15-
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
16-
output: 'export',
17-
},
18-
{ include: ['@devup-ui/components', '@devup-ui/reset-css'] },
19-
),
13+
DevupUI({
14+
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
15+
output: 'export',
16+
}),
2017
)

apps/landing/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,24 @@
77
"dev": "node ./script.js && next dev",
88
"search": "node ./script.js",
99
"build": "node ./script.js && next build",
10-
"start": "node ./script.js && next start",
10+
"start": "npx serve ./out",
1111
"lint": "eslint"
1212
},
1313
"dependencies": {
1414
"@devup-ui/components": "workspace:*",
1515
"@devup-ui/react": "workspace:*",
1616
"@devup-ui/reset-css": "workspace:*",
17-
"@mdx-js/loader": "^3.1.0",
18-
"@mdx-js/react": "^3.1.0",
19-
"@next/mdx": "^15.4.7",
17+
"@mdx-js/loader": "^3.1.1",
18+
"@mdx-js/react": "^3.1.1",
19+
"@next/mdx": "^15.5.2",
2020
"@types/mdx": "^2.0.13",
2121
"body-scroll-lock": "3.1.5",
2222
"clsx": "^2.1.1",
23-
"next": "^15.4.7",
23+
"next": "^15.5.2",
2424
"react": "^19.1.1",
2525
"react-dom": "^19.1.1",
2626
"react-markdown": "^10.1.0",
27-
"react-syntax-highlighter": "^15.6.1",
27+
"react-syntax-highlighter": "^15.6.6",
2828
"remark-gfm": "^4.0.1"
2929
},
3030
"devDependencies": {

apps/landing/src/app/page.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,12 @@ export default function HomePage() {
8484
<VStack alignItems="center" gap="50px" maxW="800px" mx="auto">
8585
<VStack alignItems="center" gap="24px">
8686
<Image h="50px" src="/icon.svg" w="52px" />
87-
<Text color="$title" textAlign="center" typography="h1">
87+
<Text
88+
WebkitLineClamp={2}
89+
color="$title"
90+
textAlign="center"
91+
typography="h1"
92+
>
8893
Zero Config, Zero FOUC, Zero Runtime, CSS in JS Preprocessor
8994
</Text>
9095
<Text color="$text" textAlign="center" typography="h6Reg">

apps/next/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
"scripts": {
77
"dev": "next dev",
88
"build": "next build",
9-
"start": "next start",
9+
"start": "npx serve ./out",
1010
"lint": "next lint"
1111
},
1212
"dependencies": {
1313
"react": "^19.1.1",
1414
"react-dom": "^19.1.1",
15-
"next": "^15.4.7",
15+
"next": "^15.5.2",
1616
"@devup-ui/react": "workspace:*"
1717
},
1818
"devDependencies": {

apps/rsbuild/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"build": "rsbuild build",
88
"dev": "rsbuild dev --open",
99
"preview": "rsbuild preview",
10+
"start": "npx serve ./dist",
1011
"lint": "tsc && eslint"
1112
},
1213
"dependencies": {
@@ -15,8 +16,8 @@
1516
"@devup-ui/react": "workspace:*"
1617
},
1718
"devDependencies": {
18-
"@rsbuild/core": "^1.4.15",
19-
"@rsbuild/plugin-react": "^1.3.5",
19+
"@rsbuild/core": "^1.5.3",
20+
"@rsbuild/plugin-react": "^1.4.0",
2021
"@devup-ui/rsbuild-plugin": "workspace:*"
2122
}
2223
}

0 commit comments

Comments
 (0)