Skip to content

Commit 8019843

Browse files
authored
Merge pull request #81 from dev-five-git/fix-next-issue
Implement next
2 parents 5fc10ce + 67b53ac commit 8019843

File tree

24 files changed

+1898
-603
lines changed

24 files changed

+1898
-603
lines changed

.changeset/gorgeous-peas-dress.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@devup-ui/webpack-plugin": patch
3+
"@devup-ui/wasm": patch
4+
"@devup-ui/next-plugin": patch
5+
---
6+
7+
Fix hmr issue

Cargo.lock

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

apps/landing/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"type": "module",
55
"private": true,
66
"scripts": {
7-
"dev": "next dev",
7+
"dev": "next dev --turbo",
88
"build": "next build",
99
"start": "next start",
1010
"lint": "eslint"

bindings/devup-ui-wasm/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ default = ["console_error_panic_hook"]
1414
wasm-bindgen = "0.2.100"
1515
extractor = { path = "../../libs/extractor" }
1616
sheet = { path = "../../libs/sheet" }
17+
css = { path = "../../libs/css" }
1718

1819
# The `console_error_panic_hook` crate provides better debugging of panics by
1920
# logging them with `console.error`. This is great for development, but requires
@@ -22,7 +23,10 @@ sheet = { path = "../../libs/sheet" }
2223
console_error_panic_hook = { version = "0.1.7", optional = true }
2324
once_cell = "1.20.2"
2425
js-sys = "0.3.76"
26+
serde_json = "1.0.138"
27+
serde-wasm-bindgen = "0.6.5"
2528

2629
[dev-dependencies]
2730
wasm-bindgen-test = "0.3.50"
2831
serial_test = "3.2.0"
32+
insta = "1.42.1"

0 commit comments

Comments
 (0)