Skip to content

Commit 78da2f0

Browse files
committed
Update sequence export of the meta-pkg
1 parent 0bcc9f6 commit 78da2f0

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ package for package versioning across the monorepo, as well as changelogs. See *
7575
ready to make a release, then go back to step 2.
7676

7777
6. Run `yarn test` to double check all tests pass
78-
7. Run `yarn version-packages` to bump versions of the packages, and then commit+merge the version.
79-
8. Run NPM_CONFIG_OTP=PUT_OTP_CODE_HERE `yarn release`. If the 2FA code timesout while publishing, run the command again
78+
7. Run `yarn version-packages` to bump versions of the packages
79+
8. Commit files after versioning. This is the commit that will be published and tagged.
80+
9. Run NPM_CONFIG_OTP=PUT_OTP_CODE_HERE `yarn release`. If the 2FA code timesout while publishing, run the command again
8081
with a new code, only the packages that were not published will be published.
8182

82-
8383
## NOTES
8484

8585
1. Browser tests can be run with `yarn test` or, separately `yarn test:server` and `yarn test:run`

packages/0xsequence/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# 0xsequence
22

3+
## 0.7.1
4+
5+
### Patch Changes
6+
7+
- - For developer convenience, update 0xsequence package to make possible: `import { sequence } from '0xsequence'`
8+
39
## 0.7.0
410

511
### Patch Changes

packages/0xsequence/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "0xsequence",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "Sequence: simple & powerful Ethereum development library and Web-based smart wallet",
55
"source": "src/index.ts",
66
"main": "dist/0xsequence.cjs.js",

packages/0xsequence/src/index.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ const utils = {
2020
..._utils
2121
}
2222

23-
// sequence meta-package types
24-
export {
23+
// sequence meta-package
24+
export const sequence = {
2525
abi,
2626
api,
2727
auth,
@@ -37,3 +37,5 @@ export {
3737

3838
Wallet
3939
}
40+
41+
export { Wallet }

0 commit comments

Comments
 (0)