Skip to content

Commit

Permalink
fix: upgrade diff algorithm to fix WC bug #611 (#620)
Browse files Browse the repository at this point in the history
  • Loading branch information
aralroca authored Nov 9, 2024
1 parent 859fd50 commit 04897b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file modified bun.lockb
Binary file not shown.
6 changes: 3 additions & 3 deletions packages/brisa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,12 @@
"dependencies": {
"astring": "1.9.0",
"csstype": "3.1.3",
"diff-dom-streaming": "0.6.3",
"diff-dom-streaming": "0.6.4",
"meriyah": "6.0.3"
},
"devDependencies": {
"@happy-dom/global-registrator": "15.8.0",
"@types/bun": "1.1.12",
"@happy-dom/global-registrator": "15.11.0",
"@types/bun": "1.1.13",
"brisa": "latest",
"@types/mime-types": "2.1.4",
"mime-types": "2.1.35",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const brisaSize = 5720; // TODO: Reduce this size :/
const webComponents = 1107;
const unsuspenseSize = 213;
const rpcSize = 2509; // TODO: Reduce this size
const lazyRPCSize = 4139; // TODO: Reduce this size
const lazyRPCSize = 4105; // TODO: Reduce this size
// lazyRPC is loaded after user interaction (action, link),
// so it's not included in the initial size
const initialSize = unsuspenseSize + rpcSize;
Expand Down

0 comments on commit 04897b1

Please sign in to comment.