Skip to content

Commit

Permalink
feat: export cli lib
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Dec 3, 2024
1 parent 13796d6 commit 320a304
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/agoric-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
},
"exports": {
"./src/entrypoint.js": "./src/entrypoint.js",
"./src/helpers.js": "./src/helpers.js"
"./src/helpers.js": "./src/helpers.js",
"./src/lib/index.js": "./src/lib/index.js"
},
"files": [
"src",
Expand Down
7 changes: 7 additions & 0 deletions packages/agoric-cli/src/lib/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/** @file Utility library for use in other packages */

export * from './bundles.js';
export * from './casting.js';
export * from './chain.js';
export * from './format.js';
export * from './wallet.js';

0 comments on commit 320a304

Please sign in to comment.