feat: bump more deps (#14079)

This commit is contained in:
DarkSky
2025-12-10 16:02:28 +08:00
committed by GitHub
parent 40f3337d45
commit cb0ff04efa
194 changed files with 2155 additions and 2297 deletions

View File

@@ -18,7 +18,7 @@
"@affine/templates": "workspace:*",
"@preact/signals-core": "^1.8.0",
"eventemitter2": "^6.4.9",
"foxact": "^0.2.43",
"foxact": "^0.2.49",
"fractional-indexing": "^3.2.0",
"fuse.js": "^7.0.0",
"graphemer": "^1.4.0",
@@ -26,9 +26,9 @@
"jotai": "^2.10.3",
"jotai-effect": "^2.0.0",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.9",
"react": "19.1.0",
"yjs": "^13.6.21",
"nanoid": "^5.1.6",
"react": "^19.2.1",
"yjs": "^13.6.27",
"zod": "^3.25.76"
},
"devDependencies": {
@@ -38,7 +38,7 @@
"@testing-library/react": "^16.1.0",
"@types/react": "^19.0.1",
"fake-indexeddb": "^6.0.0",
"rxjs": "^7.8.1",
"rxjs": "^7.8.2",
"vitest": "^3.2.4"
},
"peerDependencies": {

View File

@@ -64,7 +64,8 @@ export class ObjectPool<Key, T> {
private gc() {
for (const [key, { obj, rc }] of new Map(
this.objects /* clone the map, because the origin will be modified during iteration */
this
.objects /* clone the map, because the origin will be modified during iteration */
)) {
if (
rc === 0 &&