I am trying to test a cli (feathers-cli) that I am working on. I have cloned it's primary dependancy (feathers-generator) and made my modifications, this is what I have done.
- Gone into feathers-generator (master branch) and run
yarn link - Gone into feathers-cli (3.0 branch) and run
yarn link "feathers-generator" - Run
yarn link - created a new directory, removed my existing version of feathers-cli
- Run
yarn link "feathers-cli"then runyarn global add "feathers-cli"
feathers however, at this point it is using the regular version it has pulled from npm. I have looked through the yarn docs and can't seem to find anything about globally linking packages. How do I approach this?