-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trouble installing a dependency that uses napa #69
Comments
The names of the actual projects would help. |
Both projects A and B are locally developed, their names are not relevant in this case. In the package.json for project A, there is a script hook I then locally publish project A as an npm module using and then in the package.json for project B, I install my local npm module. When that hits the If I npm install napa in the project B directory, then project A will install into project B. I do not want project B to have to know that it needs napa in order for project A to be installed. |
Is |
@RichardMarks did you get this resolved? I want to do something similar and I'm wondering if I should avoid it. Did adding napa to the dependencies block of the Package A help? |
@linkabi9 No, I did not get this resolved, and no adding napa as a dependency does not help either. |
@RichardMarks @linkabi9 Here is an example: https://github.com/shama/napa-nested-deps |
great, i'll be able to use this while i build some in house front end widgets with pre-npm external dependencies. thanks! |
I have a two projects, A and B for brevity.
project A uses napa to install dependencies from github
project B installs project A as a dependency
the install fails if project B does not have napa installed as well, which means that project B needs to "know" about project A's dependency on napa in order to use it.
Is there a way to resolve this?
The text was updated successfully, but these errors were encountered: