mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
11 lines
386 B
Markdown
11 lines
386 B
Markdown
|
### Developing on Dependencies
|
||
|
|
||
|
To enjoy the live-reloading that `gulp dev` offers while working on the `web3-provider-engine` or other 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!
|
||
|
|