Skip to content

Commit

Permalink
fix: logs provider tshy config (#2583)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanleecode authored Nov 29, 2024
1 parent 0c1ef89 commit 7afa37e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions packages/logs-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@
},
"license": "MIT",
"type": "module",
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js",
"main": "./dist/commonjs/mod.js",
"types": "./dist/commonjs/mod.d.ts",
"module": "./dist/esm/mod.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"@substrate-connect/source": "./src/index.ts",
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
"@substrate-connect/source": "./src/mod.ts",
"types": "./dist/esm/mod.d.ts",
"default": "./dist/esm/mod.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
"types": "./dist/commonjs/mod.d.ts",
"default": "./dist/commonjs/mod.js"
}
}
},
Expand All @@ -32,7 +32,7 @@
"project": "./tsconfig.build.json",
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
".": "./src/mod.ts"
},
"sourceDialects": [
"@substrate-connect/source"
Expand Down
2 changes: 1 addition & 1 deletion packages/ws-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"./package.json": "./package.json",
".": {
"import": {
"@substrate-connect/source": "./src/index.ts",
"@substrate-connect/source": "./src/mod.ts",
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
Expand Down

0 comments on commit 7afa37e

Please sign in to comment.