Skip to content

Commit d2baf93

Browse files
committed
Fix dep
1 parent 4ead9e6 commit d2baf93

6 files changed

Lines changed: 6 additions & 16 deletions

File tree

bindings/devup-ui-wasm/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ repository = "https://github.com/dev-five-git/devup-ui"
99
documentation = "https://devup-ui.com"
1010

1111
[lib]
12-
crate-type = ["cdylib", "rlib"]
12+
crate-type = ["cdylib"]
1313

1414
[features]
15-
default = ["console_error_panic_hook"]
15+
default = []
1616

1717
[dependencies]
1818
wasm-bindgen = "0.2.108"
@@ -25,10 +25,10 @@ css = { path = "../../libs/css" }
2525
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
2626
# code size when deploying.
2727
console_error_panic_hook = { version = "0.1.7", optional = true }
28+
bimap = { version = "0.6.3", features = ["serde"] }
2829
js-sys = "0.3.85"
2930
serde_json = "1.0.149"
3031
serde-wasm-bindgen = "0.6.5"
31-
bimap = { version = "0.6.3", features = ["serde"] }
3232
getrandom = { version = "0.3", features = ["wasm_js"] }
3333

3434
[dev-dependencies]
@@ -41,4 +41,4 @@ rstest = "0.26.1"
4141
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
4242

4343
[package.metadata.wasm-pack.profile.release]
44-
wasm-opt = false
44+
wasm-opt = ["-Oz"]

bun.lock

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"lint": "cargo fmt --all -- --check && cargo clippy --all-targets --all-features -- -D warnings && eslint",
99
"lint:fix": "eslint --fix && cargo fmt",
10-
"test": "cargo tarpaulin --out xml --out stdout --out html --all-targets --engine llvm && bun test",
10+
"test": "cargo tarpaulin --out xml --out stdout --all-targets --engine llvm && bun test",
1111
"test:e2e": "bunx playwright test",
1212
"test:e2e:ui": "bunx playwright test --ui",
1313
"test:e2e:update": "bunx playwright test --update-snapshots",

packages/components/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,7 @@
4444
"types": "./dist/index.d.ts",
4545
"dependencies": {
4646
"@devup-ui/react": "workspace:^",
47-
"csstype-extra": "latest",
4847
"react": "^19.2.4",
49-
"react-dom": "^19.2.4",
5048
"clsx": "^2.1"
5149
},
5250
"devDependencies": {
@@ -64,7 +62,6 @@
6462
},
6563
"peerDependencies": {
6664
"@devup-ui/react": "workspace:^",
67-
"csstype-extra": "*",
6865
"react": "*"
6966
}
7067
}

packages/next-plugin/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
"dependencies": {
5555
"@devup-ui/plugin-utils": "workspace:^",
5656
"@devup-ui/webpack-plugin": "workspace:^",
57-
"next": "^16.1",
5857
"@devup-ui/wasm": "workspace:^"
5958
},
6059
"devDependencies": {

packages/vite-plugin/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@
4242
],
4343
"dependencies": {
4444
"@devup-ui/plugin-utils": "workspace:^",
45-
"@devup-ui/wasm": "workspace:^",
46-
"vite": "^7.3"
45+
"@devup-ui/wasm": "workspace:^"
4746
},
4847
"devDependencies": {
4948
"typescript": "^5.9.3"

0 commit comments

Comments
 (0)