Skip to content

Commit

Permalink
Fix old version type exports
Browse files Browse the repository at this point in the history
  • Loading branch information
lemonmade committed Jul 24, 2023
1 parent 3ec78e0 commit 9d8cec0
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 13 deletions.
7 changes: 4 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remote-ui/core",
"version": "2.1.16",
"version": "2.1.17",
"publishConfig": {
"access": "public",
"@remote-ui:registry": "https://registry.npmjs.org"
Expand All @@ -12,14 +12,15 @@
"types": "./build/ts/index.d.ts",
"exports": {
".": {
"types": "./build/ts/index.d.ts",
"esnext": "./index.esnext",
"import": "./index.mjs",
"require": "./index.js"
}
},
"sideEffects": false,
"dependencies": {
"@remote-ui/rpc": "^1.3.4",
"@remote-ui/types": "^1.1.2"
"@remote-ui/rpc": "^1.3.6",
"@remote-ui/types": "^1.1.3"
}
}
10 changes: 6 additions & 4 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remote-ui/react",
"version": "4.5.13",
"version": "4.5.14",
"publishConfig": {
"access": "public",
"@remote-ui:registry": "https://registry.npmjs.org"
Expand All @@ -19,11 +19,13 @@
},
"exports": {
".": {
"types": "./build/ts/index.d.ts",
"esnext": "./index.esnext",
"import": "./index.mjs",
"require": "./index.js"
},
"./host": {
"types": "./build/ts/host.d.ts",
"esnext": "./host.esnext",
"import": "./host.mjs",
"require": "./host.js"
Expand All @@ -36,9 +38,9 @@
"react-dom": "^17.0.0"
},
"dependencies": {
"@remote-ui/async-subscription": "^2.1.13",
"@remote-ui/core": "^2.1.16",
"@remote-ui/rpc": "^1.3.4",
"@remote-ui/async-subscription": "^2.1.14",
"@remote-ui/core": "^2.1.17",
"@remote-ui/rpc": "^1.3.6",
"@types/react": ">=17.0.0 <18.0.0",
"@types/react-reconciler": "^0.26.0",
"react-reconciler": ">=0.26.0 <0.27.0"
Expand Down
6 changes: 3 additions & 3 deletions packages/rpc/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@remote-ui/rpc",
"description": "An RPC library with strong support for simulating the transfer of functions via postMessage",
"version": "1.3.5",
"version": "1.3.6",
"publishConfig": {
"access": "public"
},
Expand All @@ -12,11 +12,11 @@
"types": "./build/ts/index.d.ts",
"exports": {
".": {
"types": "./build/ts/index.d.ts",
"esnext": "./index.esnext",
"import": "./index.mjs",
"require": "./index.js"
},
"./": "./"
}
},
"sideEffects": false,
"devDependencies": {
Expand Down
8 changes: 5 additions & 3 deletions packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remote-ui/vue",
"version": "0.3.16",
"version": "0.3.17",
"publishConfig": {
"access": "public",
"@remote-ui:registry": "https://registry.npmjs.org"
Expand All @@ -20,19 +20,21 @@
},
"exports": {
".": {
"types": "./build/ts/index.d.ts",
"esnext": "./index.esnext",
"import": "./index.mjs",
"require": "./index.js"
},
"./host": {
"types": "./build/ts/host/index.d.ts",
"esnext": "./host.esnext",
"import": "./host.mjs",
"require": "./host.js"
}
},
"dependencies": {
"@remote-ui/core": "^2.1.16",
"@remote-ui/rpc": "^1.3.4",
"@remote-ui/core": "^2.1.17",
"@remote-ui/rpc": "^1.3.6",
"@vue/runtime-core": ">=3.0.0 <4.0.0"
},
"devDependencies": {
Expand Down
5 changes: 5 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1577,6 +1577,11 @@
react-reconciler "^0.26.0"
react-test-renderer "^17.0.0"

"@remote-ui/types@^1.1.3":
version "1.1.3"
resolved "https://registry.yarnpkg.com/@remote-ui/types/-/types-1.1.3.tgz#b2a790d5be50fb82d89d4abea9883f87f83a5a25"
integrity sha512-P1kN1F3p0oMgnLN8Of1Ie9am3sLvJ7nhqHH1pvzkrxqjVwhhyPVZNcwOHyUNZPKp62izhDavdrcnqrdXzVJqGA==

"@rollup/plugin-babel@^5.3.0":
version "5.3.0"
resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.0.tgz#9cb1c5146ddd6a4968ad96f209c50c62f92f9879"
Expand Down

0 comments on commit 9d8cec0

Please sign in to comment.