Skip to content

Commit bbbdead

Browse files
authored
Merge pull request #617 from dev-five-git/new-strategy
Apply new strategy
2 parents 3dab04f + 1f9b6b8 commit bbbdead

44 files changed

Lines changed: 5317 additions & 124 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"changes":{"packages/next-plugin/package.json":"Patch","packages/rsbuild-plugin/package.json":"Patch","packages/plugin-utils/package.json":"Patch","packages/bun-plugin/package.json":"Patch","packages/eslint-plugin/package.json":"Patch","packages/components/package.json":"Patch","packages/webpack-plugin/package.json":"Patch","bindings/devup-ui-wasm/package.json":"Patch","packages/vite-plugin/package.json":"Patch"},"note":"Apply new strategy","date":"2026-06-03T09:34:04.566505700Z"}

benchmark.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ result.push(benchmark('devup-ui'))
8585
result.push(benchmark('devup-ui-single'))
8686
result.push(benchmark('tailwind-turbo'))
8787
result.push(benchmark('devup-ui-single-turbo'))
88+
result.push(benchmark('devup-ui-turbo'))
8889
result.push(benchmark('vanilla-extract-devup-ui'))
8990
result.push(benchmark('tailwind-turbo-devup-ui'))
9091
result.push(benchmark('vinext-devup-ui'))
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
12+
13+
# testing
14+
/coverage
15+
16+
# next.js
17+
/.next/
18+
/out/
19+
20+
# production
21+
/build
22+
23+
# misc
24+
.DS_Store
25+
*.pem
26+
27+
# debug
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
.pnpm-debug.log*
32+
33+
# env files (can opt-in for committing if needed)
34+
.env*
35+
36+
# vercel
37+
.vercel
38+
39+
# typescript
40+
*.tsbuildinfo
41+
next-env.d.ts
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
## Nextjs App
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { DevupUI } from '@devup-ui/next-plugin'
2+
3+
const nextConfig = {
4+
/* config options here */
5+
}
6+
7+
export default DevupUI(nextConfig, {})
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "next-devup-ui-turbo-benchmark",
3+
"version": "0.1.0",
4+
"type": "module",
5+
"private": true,
6+
"scripts": {
7+
"dev": "next dev",
8+
"build": "next build --experimental-debug-memory-usage",
9+
"start": "next start",
10+
"lint": "eslint"
11+
},
12+
"dependencies": {
13+
"react": "^19.2",
14+
"react-dom": "^19.2",
15+
"next": "^16.2",
16+
"@devup-ui/react": "workspace:^"
17+
},
18+
"devDependencies": {
19+
"@devup-ui/next-plugin": "workspace:^",
20+
"typescript": "^6",
21+
"@types/node": "^25",
22+
"@types/react": "^19",
23+
"@types/react-dom": "^19"
24+
}
25+
}
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)