-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Cannot fetch newman from yarn install #739
Comments
On a sidenote, I haven't seen any other dependency causing such issue during install so far. But since, the npm modules are being fetched from registry.yarnpkg.com , so, I suspect, some modules might not have been indexed properly (just guessing here) which indicates there might be more packages which might be facing similar issue. |
I have the exact same issue with
|
I have the same issue with
|
+1 for |
@houjunchen I've found a workaround this problem, may be you can use it too. We are installing a fork of What we did was, in our fork, we kept only the directories that are actually present in the repo. |
So, NPM must be ignoring bin and man directories that are specified that don't exist. Should Yarn do the same to catch the error when handling the bin and man directories? Logging a warning might be nice, since the package might not work correctly if a bin directory was really expected to exist. |
Is anyone still facing this issue with {
"name": "issue739",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"newman": "^3.1.2"
}
} yarn
yarn install v0.17.10
info No lockfile found.
[1/4] Resolving packages...
warning newman > postman-runtime > node-uuid@1.4.7: use uuid module instead
warning newman > serialised-error > node-uuid@1.4.7: use uuid module instead
warning newman > postman-request > node-uuid@1.4.7: use uuid module instead
[2/4] Fetching packages...
[3/4] Linking dependencies...
[4/4] Building fresh packages...
success Saved lockfile.
Done in 69.06s. If you can reproduce the error, please provide a |
Can reproduce with (Note that for newman specifically the bug is reproducible with |
Closing, since this issue seems to have been fixed |
Do you want to request a feature or report a bug?
bug
What is the current behavior?
After resolution process is complete, yarn errors during fetch:
If the current behavior is a bug, please provide the steps to reproduce.
Mention newman as devDependency in package.json
yarn install
What is the expected behavior?
Yarn should complete all 4 processes.
Please mention your node.js, yarn and operating system version.
yarn: v0.15.1
node: v6.3.1
OS: ubuntu 14.04
The text was updated successfully, but these errors were encountered: