aboutsummaryrefslogtreecommitdiffstats
path: root/docs/developing-on-deps.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/developing-on-deps.md')
-rw-r--r--docs/developing-on-deps.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/developing-on-deps.md b/docs/developing-on-deps.md
new file mode 100644
index 000000000..7de3f67a8
--- /dev/null
+++ b/docs/developing-on-deps.md
@@ -0,0 +1,10 @@
+### 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!
+