diff options
author | Fabio Berger <me@fabioberger.com> | 2017-11-14 07:45:30 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-11-14 07:45:30 +0800 |
commit | 3d623126572301012f35353d95471e120fb502b9 (patch) | |
tree | 6ff399d93e51bbf4554b54f77bb245d8c3adfac6 | |
parent | 9b083eebd72c18a450b20028809b9387811adbf4 (diff) | |
download | dexon-sol-tools-3d623126572301012f35353d95471e120fb502b9.tar dexon-sol-tools-3d623126572301012f35353d95471e120fb502b9.tar.gz dexon-sol-tools-3d623126572301012f35353d95471e120fb502b9.tar.bz2 dexon-sol-tools-3d623126572301012f35353d95471e120fb502b9.tar.lz dexon-sol-tools-3d623126572301012f35353d95471e120fb502b9.tar.xz dexon-sol-tools-3d623126572301012f35353d95471e120fb502b9.tar.zst dexon-sol-tools-3d623126572301012f35353d95471e120fb502b9.zip |
Missing @
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,7 +21,7 @@ Make sure you have `yarn@1.x` installed locally. ### Creating a new sub-package -1. Make sure the `name` field in the sub-package's `package.json` starts with `@0xproject/` and has a unique name (e.g `0xproject/assert`). +1. Make sure the `name` field in the sub-package's `package.json` starts with `@0xproject/` and has a unique name (e.g `@0xproject/assert`). 2. Run `yarn install` to install all it's dependencies. @@ -34,5 +34,5 @@ Make sure you have `yarn@1.x` installed locally. 3. Import the sub-package as: ``` -import {myPkg} from '0xproject/myPkg'; +import {myPkg} from '@0xproject/myPkg'; ``` |