Skip to content

Commit 28d68d7

Browse files
authored
Merge pull request #7 from windingtree/develop
feat: 🎸 Bump beta.6
2 parents c78c5e3 + a5836b3 commit 28d68d7

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
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.4"
22+
"@windingtree/sdk": "^0.1.0-beta.5"
2323
},
2424
"eslintConfig": {
2525
"extends": [

examples/client/src/App.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
import { RequestRecord } from '../../../src/client/requestsRegistry.js';
1111
import { Client, createClient } from '../../../src/client/index.js';
1212
import { ClientOptions, storage, utils } from '../../../src/index.js';
13-
// import { Client, ClientOptions, RequestRecord, createClient, storage } from '@windingtree/sdk';
13+
// import { Client, ClientOptions, RequestRecord, createClient, storage, utils } from '@windingtree/sdk';
1414

1515
/** Default request expiration time */
1616
const defaultExpire = '30s';

examples/client/tsconfig.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"compilerOptions": {
3-
"target": "ESNext",
3+
"target": "ES2022",
44
"useDefineForClassFields": true,
5-
"lib": ["DOM", "DOM.Iterable", "ESNext"],
5+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
66
"allowJs": false,
77
"skipLibCheck": true,
8-
"esModuleInterop": false,
8+
"esModuleInterop": true,
99
"allowSyntheticDefaultImports": true,
1010
"strict": true,
1111
"forceConsistentCasingInFileNames": true,
12-
"module": "ESNext",
13-
"moduleResolution": "NodeNext",
12+
"module": "ES2022",
13+
"moduleResolution": "Node",
1414
"resolveJsonModule": true,
1515
"isolatedModules": true,
1616
"noEmit": 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": "ESNext",
4+
"module": "ES2022",
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/sdk@^0.1.0-beta.4":
2181-
version "0.1.0-beta.4"
2182-
resolved "https://registry.yarnpkg.com/@windingtree/sdk/-/sdk-0.1.0-beta.4.tgz#ecb0ab022b6dd00a80e4d9490dc6c47af3d52894"
2183-
integrity sha512-29duApIev4DQ1k4O2WCISqJro9Zb+rylpKS8kxVlM6jpSm32u7awm2HfJbGR/k+vxOmYfzthYZsmEdmSziIL4g==
2180+
"@windingtree/sdk@^0.1.0-beta.5":
2181+
version "0.1.0-beta.5"
2182+
resolved "https://registry.yarnpkg.com/@windingtree/sdk/-/sdk-0.1.0-beta.5.tgz#41158f6adb8454e53f80dc4f7b8ba7e9cf245e45"
2183+
integrity sha512-oED/LKdrdZULbFmpiAIySpkU3DNE+qXT+yPf8kGllj/qyD8FtSe3UzaUrTDn6XpMqwr+YA7gZzaducb6MXwpuA==
21842184
dependencies:
21852185
"@chainsafe/libp2p-gossipsub" "^6.2.0"
21862186
"@chainsafe/libp2p-noise" "^11.0.4"

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"type": "module",
2626
"exports": {
2727
".": {
28-
"import": "./lib/index.js"
28+
"import": "./lib/src/index.js"
2929
},
3030
"./utils": {
3131
"import": "./lib/utils/index.js"
@@ -40,7 +40,7 @@
4040
}
4141
},
4242
"types": "./lib/types/index.d.ts",
43-
"main": "./lib/index.js",
43+
"main": "./lib/src/index.js",
4444
"files": [
4545
"lib/**/*",
4646
"!**/*.tsbuildinfo"

tsconfig.json

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

0 commit comments

Comments
 (0)