Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a62e7fd

Browse files
committedAug 3, 2023
chore(deps): update cbor-web to v9
1 parent 984f5a3 commit a62e7fd

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed
 

‎packages/utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"@polkadot/keyring": "^12.0.0",
4040
"@polkadot/util": "^12.0.0",
4141
"@polkadot/util-crypto": "^12.0.0",
42-
"cbor-web": "^8.0.0",
42+
"cbor-web": "^9.0.0",
4343
"tweetnacl": "^1.0.3",
4444
"uuid": "^9.0.0"
4545
}

‎packages/utils/src/cbor-web.d.ts

-1
This file was deleted.

‎packages/utils/src/cbor.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
// special import syntax as this is a pure cjs import
99
import * as cborImp from 'cbor-web'
1010
// this is horrible but the only way to make this import work in both cjs & esm builds
11-
export const cbor = cborImp?.default ?? cborImp
11+
export const cbor: typeof cborImp = (cborImp as any)?.default ?? cborImp

‎tests/cbor-web.d.ts

-1
This file was deleted.

‎tests/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": "../tsconfig.json",
3-
"include": ["bundle-test.ts", "types.d.ts", "cbor-web.d.ts"],
3+
"include": ["bundle-test.ts", "types.d.ts"],
44
"compilerOptions": {
55
"module": "None",
66
"resolveJsonModule": false,

‎yarn.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -2014,7 +2014,7 @@ __metadata:
20142014
"@polkadot/keyring": ^12.0.0
20152015
"@polkadot/util": ^12.0.0
20162016
"@polkadot/util-crypto": ^12.0.0
2017-
cbor-web: ^8.0.0
2017+
cbor-web: ^9.0.0
20182018
rimraf: ^3.0.2
20192019
tweetnacl: ^1.0.3
20202020
typescript: ^4.8.3
@@ -4003,10 +4003,10 @@ __metadata:
40034003
languageName: node
40044004
linkType: hard
40054005

4006-
"cbor-web@npm:^8.0.0":
4007-
version: 8.1.0
4008-
resolution: "cbor-web@npm:8.1.0"
4009-
checksum: 7898694ae4959a306f6e7dd2d042be8dab060a312d78dc8a2131d8ca641d5bcbcfe7e0691f1b6f0f95e5402b14ebf0ad797be14546712ab4682720b459c4836c
4006+
"cbor-web@npm:^9.0.0":
4007+
version: 9.0.1
4008+
resolution: "cbor-web@npm:9.0.1"
4009+
checksum: fd5ffbb52490ec1d68607f9da8a207cf3b15ff7336556f9ffc34c34d7f26775dad6ff6e53b413bdaecaa75335d607d9d9170a17885e1d6640226fbcfa4c6453c
40104010
languageName: node
40114011
linkType: hard
40124012

0 commit comments

Comments
 (0)
Please sign in to comment.