Skip to content

Commit

Permalink
Merge pull request #11 from windingtree/develop
Browse files Browse the repository at this point in the history
feat: 🎸 Bump beta.10
  • Loading branch information
kostysh authored Apr 3, 2023
2 parents b16cef3 + e8d9122 commit 0504f60
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 15 deletions.
2 changes: 1 addition & 1 deletion examples/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"typescript": "^5.0.3",
"vite": "^4.2.1",
"zod": "^3.21.4",
"@windingtree/sdk": "0.1.0-beta.8"
"@windingtree/sdk": "0.1.0-beta.9"
},
"eslintConfig": {
"extends": [
Expand Down
4 changes: 1 addition & 3 deletions examples/client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ import {
contractConfig,
serverAddress,
} from '../../shared/types.js';
import { RequestRecord } from '../../../src/client/requestsRegistry.js';
import { Client, createClient } from '../../../src/client/index.js';
import { ClientOptions, storage, utils } from '../../../src/index.js';
import { Client, ClientOptions, createClient, RequestRecord, storage, utils } from '../../../src/index.js';
// import { Client, ClientOptions, RequestRecord, createClient, storage, utils } from '@windingtree/sdk';

/** Default request expiration time */
Expand Down
6 changes: 3 additions & 3 deletions examples/client/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ES2022",
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
Expand Down
2 changes: 1 addition & 1 deletion examples/client/tsconfig.node.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"composite": true,
"module": "ES2022",
"module": "ESNext",
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true
},
Expand Down
8 changes: 4 additions & 4 deletions examples/client/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2177,10 +2177,10 @@
magic-string "^0.27.0"
react-refresh "^0.14.0"

"@windingtree/[email protected].8":
version "0.1.0-beta.8"
resolved "https://registry.yarnpkg.com/@windingtree/sdk/-/sdk-0.1.0-beta.8.tgz#1f15455a889121092cba46be34f3f0acbba8831f"
integrity sha512-uc7BYeuJ2Llr4RY6RUlIW1by3O8d2gng7ew/swaoEyhsDTwl6NtNn/Iz3STQ2+34tQSTsNvKv/9YHrna2Guexw==
"@windingtree/[email protected].9":
version "0.1.0-beta.9"
resolved "https://registry.yarnpkg.com/@windingtree/sdk/-/sdk-0.1.0-beta.9.tgz#215fe4729d0bb7b777de449d9e3d4ce56241b432"
integrity sha512-L2RuVtCGcCuSAEcUjE25k2BaDx3SbZQJos/ncU9ncmilKFNuPbt+QAmxgveZVZRXCb5fInJyWa+V9bD9NvPAaw==
dependencies:
"@chainsafe/libp2p-gossipsub" "^6.2.0"
"@chainsafe/libp2p-noise" "^11.0.4"
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"compilerOptions": {
"strict": true,
"esModuleInterop": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"target": "ES2022",
"module": "ES2022",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "NodeNext",
"skipLibCheck": true,
"checkJs": true,
Expand Down

0 comments on commit 0504f60

Please sign in to comment.