Skip to content

Commit

Permalink
Update sequence export of the meta-pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
pkieltyka committed Jan 20, 2021
1 parent 0bcc9f6 commit 78da2f0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
6 changes: 6 additions & 0 deletions packages/0xsequence/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/0xsequence/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 4 additions & 2 deletions packages/0xsequence/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ const utils = {
..._utils
}

// sequence meta-package types
export {
// sequence meta-package
export const sequence = {
abi,
api,
auth,
Expand All @@ -37,3 +37,5 @@ export {

Wallet
}

export { Wallet }

0 comments on commit 78da2f0

Please sign in to comment.