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
5 changes: 5 additions & 0 deletions .changeset/olive-guests-grin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@devup-ui/wasm": patch
---

to phf
87 changes: 43 additions & 44 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions benchmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ function clearBuildFile() {
recursive: true,
force: true,
})
if (existsSync('./benchmark/next-devup-ui/.df'))
rmSync('./benchmark/next-devup-ui/.df', {
recursive: true,
force: true,
})
}

function checkDirSize(path) {
Expand Down
4 changes: 2 additions & 2 deletions benchmark/next-chakra-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build": "next build --experimental-debug-memory-usage",
"start": "next start",
"lint": "next lint"
},
Expand All @@ -24,4 +24,4 @@
"@types/react-dom": "^19",
"typescript": "^5"
}
}
}
4 changes: 2 additions & 2 deletions benchmark/next-devup-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build": "next build --experimental-debug-memory-usage",
"start": "next start",
"lint": "eslint"
},
Expand All @@ -22,4 +22,4 @@
"@types/react": "^19",
"@types/react-dom": "^19"
}
}
}
4 changes: 2 additions & 2 deletions benchmark/next-kuma-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build": "next build --experimental-debug-memory-usage",
"start": "next start",
"lint": "next lint"
},
Expand All @@ -22,4 +22,4 @@
"@types/react": "^19",
"@types/react-dom": "^19"
}
}
}
1 change: 1 addition & 0 deletions libs/css/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edition = "2024"

[dependencies]
once_cell = "1.21.3"
phf = "0.11"
serial_test = "3.2.0"
serde = { version = "1.0.219", features = ["derive"] }
regex = "1.11.1"
Loading