Skip to content

Commit 959ba2e

Browse files
authored
Merge pull request #564 from dev-five-git/tailwind
Support tailwind
2 parents 8e64670 + 308d8ff commit 959ba2e

File tree

40 files changed

+8250
-15
lines changed

40 files changed

+8250
-15
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"changes":{"bindings/devup-ui-wasm/package.json":"Patch"},"note":"Support tailwind","date":"2026-02-03T17:44:43.722386900Z"}

benchmark.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,16 @@ function clearBuildFile() {
8585
recursive: true,
8686
force: true,
8787
})
88+
if (existsSync('./benchmark/next-tailwind-turbo-devup-ui/.next'))
89+
rmSync('./benchmark/next-tailwind-turbo-devup-ui/.next', {
90+
recursive: true,
91+
force: true,
92+
})
93+
if (existsSync('./benchmark/next-tailwind-turbo-devup-ui/df'))
94+
rmSync('./benchmark/next-tailwind-turbo-devup-ui/df', {
95+
recursive: true,
96+
force: true,
97+
})
8898
}
8999

90100
function checkDirSize(path) {
@@ -135,5 +145,6 @@ result.push(benchmark('devup-ui-single'))
135145
result.push(benchmark('tailwind-turbo'))
136146
result.push(benchmark('devup-ui-single-turbo'))
137147
result.push(benchmark('vanilla-extract-devup-ui'))
148+
result.push(benchmark('tailwind-turbo-devup-ui'))
138149

139150
console.info(result.join('\n'))
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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { DevupUI } from '@devup-ui/next-plugin'
2+
3+
export default DevupUI({})
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "next-tailwind-turbo-devup-ui-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": "next lint"
11+
},
12+
"dependencies": {
13+
"next": "^16.1",
14+
"react": "^19.2",
15+
"react-dom": "^19.2",
16+
"react-icons": "^5.5",
17+
"@devup-ui/react": "workspace:^"
18+
},
19+
"devDependencies": {
20+
"@tailwindcss/postcss": "^4.1",
21+
"postcss": "^8.5",
22+
"@types/node": "^25",
23+
"@types/react": "^19",
24+
"@types/react-dom": "^19",
25+
"typescript": "^5",
26+
"tailwindcss": "^4.1",
27+
"@devup-ui/next-plugin": "workspace:^"
28+
}
29+
}
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)