Skip to content

Commit 8934de1

Browse files
committed
Update dependencies
1 parent a252c35 commit 8934de1

File tree

11 files changed

+361
-435
lines changed

11 files changed

+361
-435
lines changed

create-filter/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,8 +300,8 @@ export function createFilter(client, Template, filter = {}, opts = {}) {
300300
let clear = child.listen(() => {})
301301
try {
302302
if (child.value.isLoading) await child.loading
303-
/* c8 ignore next 3 */
304303
} catch {
304+
/* v8 ignore next 2 -- @preserve */
305305
return
306306
}
307307
if (checkAllFields(child.value)) {

encrypt-actions/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function bytesToBase64(bytes) {
4848
if (typeof window !== 'undefined') {
4949
return window.btoa(binaryString)
5050
} else {
51-
/* c8 ignore next 2 */
51+
/* v8 ignore next 2 -- @preserve */
5252
return Buffer.from(binaryString, 'binary').toString('base64')
5353
}
5454
}
@@ -58,7 +58,7 @@ function base64ToBytes(string) {
5858
if (typeof window !== 'undefined') {
5959
binaryString = window.atob(string)
6060
} else {
61-
/* c8 ignore next 2 */
61+
/* v8 ignore next 2 -- @preserve */
6262
binaryString = Buffer.from(string, 'base64').toString('binary')
6363
}
6464
let length = binaryString.length

encrypt-actions/index.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { expect, it } from 'vitest'
66
import { Client, encryptActions } from '../index.js'
77
import { getRandomSpaces } from './index.js'
88

9-
// @ts-expect-error
109
window.TextEncoder = TextEncoder
1110
// @ts-expect-error
1211
window.TextDecoder = TextDecoder

indexed-store/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const VERSION = 2
44

55
function rejectify(request, reject) {
66
request.onerror = e => {
7-
/* c8 ignore next 2 */
7+
/* v8 ignore next 2 -- @preserve */
88
reject(e.target.error)
99
}
1010
}
@@ -159,7 +159,7 @@ export class IndexedStore {
159159
}
160160
if (e.oldVersion < 2) {
161161
if (!log) {
162-
/* c8 ignore next 2 */
162+
/* v8 ignore next 2 -- @preserve */
163163
log = opening.transaction.objectStore('log')
164164
}
165165
log.createIndex('indexes', 'indexes', { multiEntry: true })

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -80,27 +80,27 @@
8080
"nanoid": "^5.1.6"
8181
},
8282
"devDependencies": {
83-
"@logux/eslint-config": "^56.1.0",
83+
"@logux/eslint-config": "^57.0.0",
8484
"@nanostores/preact": "^1.0.0",
8585
"@nanostores/react": "^1.0.0",
8686
"@nanostores/vue": "^1.0.1",
8787
"@size-limit/preset-small-lib": "^11.2.0",
8888
"@testing-library/preact": "^3.2.4",
8989
"@testing-library/react": "^16.3.0",
9090
"@testing-library/vue": "^8.1.0",
91-
"@types/node": "^24.8.0",
91+
"@types/node": "^24.9.1",
9292
"@types/react": "^19.2.2",
9393
"@types/react-dom": "^19.2.2",
9494
"@types/ws": "^8.18.1",
95-
"@vitest/coverage-v8": "^3.2.4",
95+
"@vitest/coverage-v8": "^4.0.3",
9696
"@vue/compiler-sfc": "^3.5.22",
97-
"actions-up": "^1.4.1",
97+
"actions-up": "^1.4.2",
9898
"check-dts": "^0.9.0",
99-
"clean-publish": "^5.2.2",
100-
"eslint": "^9.37.0",
101-
"fake-indexeddb": "^6.2.3",
99+
"clean-publish": "^6.0.1",
100+
"eslint": "^9.38.0",
101+
"fake-indexeddb": "^6.2.4",
102102
"globals": "^16.4.0",
103-
"happy-dom": "^20.0.2",
103+
"happy-dom": "^20.0.8",
104104
"multiocular": "^0.8.1",
105105
"nanospy": "^1.0.0",
106106
"nanostores": "^1.0.1",
@@ -113,8 +113,8 @@
113113
"size-limit": "^11.2.0",
114114
"svgo": "^4.0.0",
115115
"typescript": "^5.9.3",
116-
"vite": "^7.1.10",
117-
"vitest": "^3.2.4",
116+
"vite": "^7.1.12",
117+
"vitest": "^4.0.3",
118118
"vue": "^3.5.22"
119119
},
120120
"prettier": {

0 commit comments

Comments
 (0)