-
Notifications
You must be signed in to change notification settings - Fork 2
Local development
Nafis Zaman edited this page Jul 27, 2021
·
1 revision
When making changes to ivygate
, it's useful to test those changes in a dependent project like kipr/Simulator
. Here is the recommended process for making local changes to ivygate
, using Simulator
as an example:
- Clone
ivygate
locally. - Build
ivygate
by following the steps in theivygate
README. - Create a link for the local
ivygate
installation:and switch your localcd ivygate yarn link
Simulator
to use this linked version:cd Simulator yarn link ivygate
- Make changes to
ivygate
and rebuild. The changes will be reflected inSimulator
.
Once finished, return to the original state:
- Revert to the original version of
ivygate
inSimulator
:cd Simulator yarn unlink ivygate yarn install
- Remove the
ivygate
link:cd ivygate yarn unlink