aboutsummaryrefslogtreecommitdiffstats
path: root/docs/developing-on-deps.md
blob: 20c0f7c973dcf23d41520c9aa1085d61e02ce1c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
### 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!