Skip to content

Commit

Permalink
feat: extend rdt api & add radix-connect-common (#182)
Browse files Browse the repository at this point in the history
* build: add `radix-connect-common` as noExternal

* feat: add helpers & gateway export
  • Loading branch information
dawidsowardx authored Apr 22, 2024
1 parent e652504 commit 15929c0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions packages/dapp-toolkit/src/gateway/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from './gateway'
export * from './gateway-api'
export * from './types'
4 changes: 2 additions & 2 deletions packages/dapp-toolkit/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export { Logger } from './helpers/logger'
export { RadixDappToolkit } from './radix-dapp-toolkit'
export { LocalStorageClient } from './storage/local-storage-client'
export { RadixNetwork } from './gateway/types'
export * from './state'
export * from './schemas'
export * from './_types'
export * from './wallet-request'
export * from './helpers'
export * from './gateway'
2 changes: 1 addition & 1 deletion packages/dapp-toolkit/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ export default defineConfig({
entry: ['src/index.ts'],
dts: true,
format: ['esm', 'cjs'],
noExternal: ['@radixdlt/connect-button'],
noExternal: ['@radixdlt/connect-button', 'radix-connect-common'],
})

0 comments on commit 15929c0

Please sign in to comment.