Replies: 1 comment
-
Unfortunately due to the monorepo and TypeScript setup it is not easily possible to directly link to a fork on GitHub. You can test locally by cloning the repository, installing the dependencies:
And then linking the package:
Then in your test repository run:
If you make changes make sure to run |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've been working with the maintainer of Grant to account for Apple's non-standard OAuth, and I'm trying to test it out within Feathers. Unfortunately I'm fairly new to NPM, and I'm running into issues trying to get things to build.
They've asked that I test simov/grant@15d64bd, but I'm unsure how to pull this into my fork of Feathers to test. The only change is pointing the Grant dependency in
authentication-oauth
to use that specific commit.My problem is that when I try and use my fork of Feathers,
npm install
fails. The dependencies section of mypackage.json
looks like this:When I run
npm install --verbose
it fails with the following:I tried adding
"lerna": "^4.0.0"
to mydevDependencies
, and rannpm install --verbose
again, and it still fails with the following:Again, I'm new to this, and couldn't find any answers on the web, so I thought I'd ask here. Any ideas on how to get this to work?
Beta Was this translation helpful? Give feedback.
All reactions