diff options
author | Dan Finlay <542863+danfinlay@users.noreply.github.com> | 2019-08-07 05:53:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-07 05:53:50 +0800 |
commit | db08881d4527e8a037f401ef22b849e52152864f (patch) | |
tree | 6032d7a4ae67371889eece1d8490c26d5a119dd5 /docs/developing-on-deps.md | |
parent | 4139019d0f4dd83f56da400ca7e0e6d1976d1716 (diff) | |
parent | 86ad9564a064fd6158dab6a3c9e5b10614ef6e68 (diff) | |
download | tangerine-wallet-browser-7.0.0.tar tangerine-wallet-browser-7.0.0.tar.gz tangerine-wallet-browser-7.0.0.tar.bz2 tangerine-wallet-browser-7.0.0.tar.lz tangerine-wallet-browser-7.0.0.tar.xz tangerine-wallet-browser-7.0.0.tar.zst tangerine-wallet-browser-7.0.0.zip |
Merge pull request #6969 from MetaMask/developv7.0.0
Master Version Bump
Diffstat (limited to 'docs/developing-on-deps.md')
-rw-r--r-- | docs/developing-on-deps.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/developing-on-deps.md b/docs/developing-on-deps.md index e2e07cb4e..20c0f7c97 100644 --- a/docs/developing-on-deps.md +++ b/docs/developing-on-deps.md @@ -3,7 +3,7 @@ To enjoy the live-reloading that `gulp dev` offers while working on the dependencies: 1. Clone the dependency locally. - 2. `npm install` in its folder. - 3. Run `npm link` in its folder. - 4. Run `npm link $DEP_NAME` in this project folder. - 5. Next time you `npm start` it will watch the dependency for changes as well! + 2. `npm install` or `yarn install` in its folder. + 3. Run `yarn link` in its folder. + 4. Run `yarn link $DEP_NAME` in this project folder. + 5. Next time you `yarn start` it will watch the dependency for changes as well! |