From 78da2f0a95c1d76de40073f0df5ac8ccd39dd0ac Mon Sep 17 00:00:00 2001 From: Peter Kieltyka Date: Wed, 20 Jan 2021 13:46:19 -0500 Subject: [PATCH] Update sequence export of the meta-pkg --- README.md | 6 +++--- packages/0xsequence/CHANGELOG.md | 6 ++++++ packages/0xsequence/package.json | 2 +- packages/0xsequence/src/index.ts | 6 ++++-- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7d2c3c754..ee7371f45 100644 --- a/README.md +++ b/README.md @@ -75,11 +75,11 @@ package for package versioning across the monorepo, as well as changelogs. See * ready to make a release, then go back to step 2. 6. Run `yarn test` to double check all tests pass -7. Run `yarn version-packages` to bump versions of the packages, and then commit+merge the version. -8. Run NPM_CONFIG_OTP=PUT_OTP_CODE_HERE `yarn release`. If the 2FA code timesout while publishing, run the command again +7. Run `yarn version-packages` to bump versions of the packages +8. Commit files after versioning. This is the commit that will be published and tagged. +9. Run NPM_CONFIG_OTP=PUT_OTP_CODE_HERE `yarn release`. If the 2FA code timesout while publishing, run the command again with a new code, only the packages that were not published will be published. - ## NOTES 1. Browser tests can be run with `yarn test` or, separately `yarn test:server` and `yarn test:run` diff --git a/packages/0xsequence/CHANGELOG.md b/packages/0xsequence/CHANGELOG.md index 208c54f39..66c0c9c14 100644 --- a/packages/0xsequence/CHANGELOG.md +++ b/packages/0xsequence/CHANGELOG.md @@ -1,5 +1,11 @@ # 0xsequence +## 0.7.1 + +### Patch Changes + +- - For developer convenience, update 0xsequence package to make possible: `import { sequence } from '0xsequence'` + ## 0.7.0 ### Patch Changes diff --git a/packages/0xsequence/package.json b/packages/0xsequence/package.json index 6e46c0de0..f586df871 100644 --- a/packages/0xsequence/package.json +++ b/packages/0xsequence/package.json @@ -1,6 +1,6 @@ { "name": "0xsequence", - "version": "0.7.0", + "version": "0.7.1", "description": "Sequence: simple & powerful Ethereum development library and Web-based smart wallet", "source": "src/index.ts", "main": "dist/0xsequence.cjs.js", diff --git a/packages/0xsequence/src/index.ts b/packages/0xsequence/src/index.ts index f50f71eb6..73de7546f 100644 --- a/packages/0xsequence/src/index.ts +++ b/packages/0xsequence/src/index.ts @@ -20,8 +20,8 @@ const utils = { ..._utils } -// sequence meta-package types -export { +// sequence meta-package +export const sequence = { abi, api, auth, @@ -37,3 +37,5 @@ export { Wallet } + +export { Wallet }