Skip to content

Commit 0504f60

Browse files
authored
Merge pull request #11 from windingtree/develop
feat: 🎸 Bump beta.10
2 parents b16cef3 + e8d9122 commit 0504f60

File tree

6 files changed

+13
-15
lines changed

6 files changed

+13
-15
lines changed

examples/client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"typescript": "^5.0.3",
2020
"vite": "^4.2.1",
2121
"zod": "^3.21.4",
22-
"@windingtree/sdk": "0.1.0-beta.8"
22+
"@windingtree/sdk": "0.1.0-beta.9"
2323
},
2424
"eslintConfig": {
2525
"extends": [

examples/client/src/App.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ import {
77
contractConfig,
88
serverAddress,
99
} from '../../shared/types.js';
10-
import { RequestRecord } from '../../../src/client/requestsRegistry.js';
11-
import { Client, createClient } from '../../../src/client/index.js';
12-
import { ClientOptions, storage, utils } from '../../../src/index.js';
10+
import { Client, ClientOptions, createClient, RequestRecord, storage, utils } from '../../../src/index.js';
1311
// import { Client, ClientOptions, RequestRecord, createClient, storage, utils } from '@windingtree/sdk';
1412

1513
/** Default request expiration time */

examples/client/tsconfig.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2022",
3+
"target": "ESNext",
44
"useDefineForClassFields": true,
5-
"lib": ["ES2022", "DOM", "DOM.Iterable"],
5+
"lib": ["ESNext", "DOM", "DOM.Iterable"],
66
"allowJs": false,
77
"skipLibCheck": true,
88
"esModuleInterop": true,
99
"allowSyntheticDefaultImports": true,
1010
"strict": true,
1111
"forceConsistentCasingInFileNames": true,
12-
"module": "ES2022",
12+
"module": "ESNext",
1313
"moduleResolution": "Node",
1414
"resolveJsonModule": true,
1515
"isolatedModules": true,

examples/client/tsconfig.node.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"composite": true,
4-
"module": "ES2022",
4+
"module": "ESNext",
55
"moduleResolution": "Node",
66
"allowSyntheticDefaultImports": true
77
},

examples/client/yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -2177,10 +2177,10 @@
21772177
magic-string "^0.27.0"
21782178
react-refresh "^0.14.0"
21792179

2180-
"@windingtree/[email protected].8":
2181-
version "0.1.0-beta.8"
2182-
resolved "https://registry.yarnpkg.com/@windingtree/sdk/-/sdk-0.1.0-beta.8.tgz#1f15455a889121092cba46be34f3f0acbba8831f"
2183-
integrity sha512-uc7BYeuJ2Llr4RY6RUlIW1by3O8d2gng7ew/swaoEyhsDTwl6NtNn/Iz3STQ2+34tQSTsNvKv/9YHrna2Guexw==
2180+
"@windingtree/[email protected].9":
2181+
version "0.1.0-beta.9"
2182+
resolved "https://registry.yarnpkg.com/@windingtree/sdk/-/sdk-0.1.0-beta.9.tgz#215fe4729d0bb7b777de449d9e3d4ce56241b432"
2183+
integrity sha512-L2RuVtCGcCuSAEcUjE25k2BaDx3SbZQJos/ncU9ncmilKFNuPbt+QAmxgveZVZRXCb5fInJyWa+V9bD9NvPAaw==
21842184
dependencies:
21852185
"@chainsafe/libp2p-gossipsub" "^6.2.0"
21862186
"@chainsafe/libp2p-noise" "^11.0.4"

tsconfig.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"compilerOptions": {
33
"strict": true,
44
"esModuleInterop": true,
5-
"lib": ["ES2022", "DOM", "DOM.Iterable"],
6-
"target": "ES2022",
7-
"module": "ES2022",
5+
"lib": ["ESNext", "DOM", "DOM.Iterable"],
6+
"target": "ESNext",
7+
"module": "ESNext",
88
"moduleResolution": "NodeNext",
99
"skipLibCheck": true,
1010
"checkJs": true,

0 commit comments

Comments
 (0)