Skip to content

Commit 1b0cd26

Browse files
committed
Update dependencies
1 parent 97c3c46 commit 1b0cd26

File tree

6 files changed

+672
-503
lines changed

6 files changed

+672
-503
lines changed

client-node/errors.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let pair = new LocalPair()
1313

1414
let client = new ClientNode<Headers, Log<MyMeta>>('client', log, pair.left)
1515

16-
// THROWS { locale: string; }' is not assignable to parameter of type 'Headers'
16+
// THROWS 'locale' does not exist in type 'Headers'
1717
client.setLocalHeaders({ locale: 'ru' })
1818

1919
// THROWS 'string' is not assignable to type 'number'

log/errors.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Log, MemoryStore, Action } from '../index.js'
22

33
let log = new Log({ nodeId: 'test1', store: new MemoryStore() })
44

5-
// THROWS '{ name: string; }' is not assignable to parameter of type 'Action'
5+
// THROWS 'name' does not exist in type 'Action'
66
log.add({ name: 'Kate' })
77

88
// THROWS 'number' is not assignable to type 'string'

logux-error/errors.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import { LoguxError } from '../index.js'
22

33
// THROWS 'number' is not assignable to parameter of type 'void'
44
new LoguxError('bruteforce', 10)
5-
// THROWS '{ a: number; }' is not assignable to parameter of type 'Versions'.
5+
// THROWS 'a' does not exist in type 'Versions'
66
new LoguxError('wrong-protocol', { a: 1 })

package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -33,29 +33,29 @@
3333
"node": "^18.0.0 || >=20.0.0"
3434
},
3535
"dependencies": {
36-
"nanoevents": "^8.0.0"
36+
"nanoevents": "^9.0.0"
3737
},
3838
"devDependencies": {
39-
"@logux/eslint-config": "^52.0.1",
40-
"@types/ws": "^8.5.5",
41-
"@typescript-eslint/eslint-plugin": "^6.7.2",
42-
"@typescript-eslint/parser": "^6.7.2",
43-
"c8": "^8.0.1",
39+
"@logux/eslint-config": "^52.0.2",
40+
"@types/ws": "^8.5.10",
41+
"@typescript-eslint/eslint-plugin": "^7.1.1",
42+
"@typescript-eslint/parser": "^7.1.1",
43+
"c8": "^9.1.0",
4444
"check-dts": "^0.7.2",
45-
"clean-publish": "^4.2.0",
46-
"eslint": "^8.50.0",
45+
"clean-publish": "^4.3.0",
46+
"eslint": "^8.57.0",
4747
"eslint-config-standard": "^17.1.0",
48-
"eslint-plugin-import": "^2.28.1",
49-
"eslint-plugin-n": "^16.1.0",
50-
"eslint-plugin-perfectionist": "^2.1.0",
48+
"eslint-plugin-import": "^2.29.1",
49+
"eslint-plugin-n": "^16.6.2",
50+
"eslint-plugin-perfectionist": "^2.6.0",
5151
"eslint-plugin-prefer-let": "^3.0.1",
5252
"eslint-plugin-promise": "^6.1.1",
5353
"nanodelay": "^2.0.2",
5454
"nanospy": "^1.0.0",
5555
"tsm": "^2.3.0",
56-
"typescript": "^5.2.2",
56+
"typescript": "^5.4.2",
5757
"uvu": "^0.5.6",
58-
"ws": "^8.14.2"
58+
"ws": "^8.16.0"
5959
},
6060
"prettier": {
6161
"arrowParens": "avoid",

0 commit comments

Comments
 (0)