1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 03:12:42 +02:00

Delete developing-on-deps.md (#8004)

This commit is contained in:
Whymarrh Whitby 2020-02-06 16:52:38 -03:30 committed by GitHub
parent fbfaa6eb10
commit f928b1f69f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 10 deletions

View File

@ -68,7 +68,6 @@ To write tests that will be run in the browser using QUnit, add your test files
- [How to add custom build to Firefox](./docs/add-to-firefox.md)
- [How to add a new translation to MetaMask](./docs/translating-guide.md)
- [Publishing Guide](./docs/publishing.md)
- [How to live reload on local dependency changes](./docs/developing-on-deps.md)
- [How to add new networks to the Provider Menu](./docs/adding-new-networks.md)
- [How to port MetaMask to a new platform](./docs/porting_to_new_environment.md)
- [How to use the TREZOR emulator](./docs/trezor-emulator.md)

View File

@ -1,9 +0,0 @@
### Developing on Dependencies
To enjoy the live-reloading that `gulp dev` offers while working on the dependencies:
1. Clone the dependency locally.
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!