From faa7abad8234bfe72c9461765e36ad6b034e2d5d Mon Sep 17 00:00:00 2001 From: samsiegart Date: Thu, 29 Feb 2024 00:09:20 -0800 Subject: [PATCH 1/2] build(react-components): set publishConfig access to public --- packages/react-components/package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/react-components/package.json b/packages/react-components/package.json index 7b273ae..f934947 100644 --- a/packages/react-components/package.json +++ b/packages/react-components/package.json @@ -87,5 +87,8 @@ "*.{ts,tsx,js,jsx,json,css,md}": [ "prettier -w" ] + }, + "publishConfig": { + "access": "public" } } From 1fbdbf5b8de38aa17dd1ae2ff5b1bc503a6fb6b8 Mon Sep 17 00:00:00 2001 From: samsiegart Date: Thu, 29 Feb 2024 00:10:13 -0800 Subject: [PATCH 2/2] chore(react-components): make makeAssetList type portable --- packages/react-components/src/lib/config/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-components/src/lib/config/index.ts b/packages/react-components/src/lib/config/index.ts index b2bc354..4f55d1a 100644 --- a/packages/react-components/src/lib/config/index.ts +++ b/packages/react-components/src/lib/config/index.ts @@ -45,5 +45,5 @@ export const makeAssetList = (chain_name: string) => { 'Agoric missing from chain registry, cannot initiliaze test chains', ); - return { ...agoricAssetList, chain_name }; + return { ...agoricAssetList, chain_name } as AssetList; };