-
Notifications
You must be signed in to change notification settings - Fork 53
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
Missing support for private / non-npm dependencies #7
Comments
Also run into this, I use a mix of in-house and public packages, and this is currently blocking for me to change 😭 |
+1 support for private repo would be great |
+1 for git dependencies. Sometimes is needed using forks, like here: |
The current roadmap is something like that:
git repos come last, because GitHub at least already gives you tarballs anyways, which you can use in order to work around that feature (but it still means we need it). |
As in ec1cdb4, scoped public packages are now supported. Tested with @zeke/pubbles. Private npm modules aren't supported yet due to the missing authentication logic that still needs to be added. I expect private packages to be implemented by Thursday or Friday this week. Stay tuned everyone, we're getting there! |
Any update on this? |
note that git repos are far more popular than any of the other options, perhaps they should go first. |
@avetisk No update yet, sorry for the delayed reply. I hope I'm gonna have some time this weekend to finish this. |
@alexanderGugel "GitHub at least already gives you tarballs anyways" except I can't control the dependencies of dependencies. |
Just ran my first I'm also in a need for private repositories. |
Has this been done? |
Until this is solved, is it possible to use ied to install all public dependencies and npm for private? |
@gajus, Thought about doing that too. Didn't seem to work quite right for us with webpack. |
👍 on github dependencies. 4 of the last places I work, included where I currently work, use github and tags as a form of private npm. |
I hope it has support for github or git repos soon! |
+1 |
+1, no private repos is a show stopper for us. |
Closing for now, since you can just set the In order to get your npm token, check your Source: https://github.com/alexanderGugel/ied/blob/master/src/config.js#L94 (I'm currently putting together more comprehensive docs (as in "any" docs)) |
@alexanderGugel this will allow git/tarball dependencies? |
unfortunately that is still not fixing the problem for us, so we won't be able to use |
ied fails when I try to install private dependencies
If I run
npm install
everything works fine. The expected behavior is thatied
uses my ssh keys to load the private repos from github. see using git urls as dependenciesThe text was updated successfully, but these errors were encountered: