-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Output can be cut off in node 4 #1070
Comments
I think the alternatives here are to have JSDoc not call |
nicksay
added a commit
to nicksay/jsdoc
that referenced
this issue
Oct 7, 2015
This is a quick fix for truncated output in Node 4 by only calling `process.exit` for errors. Closes jsdoc#1070
Macil
added a commit
to InboxSDK/InboxSDK
that referenced
this issue
Oct 19, 2015
nicksay
added a commit
to nicksay/jsdoc
that referenced
this issue
Nov 2, 2015
This is a quick fix for truncated output in Node 4 by only calling `process.exit` for errors. Closes jsdoc#1070
Fixed on master. Sorry for the long delay in getting this merged. |
Macil
added a commit
to InboxSDK/InboxSDK
that referenced
this issue
Dec 17, 2015
This reverts commit a385553. The bug was fixed in jsdoc.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Between node 0.12 and 4.0, writes to stdout are no longer synchronous, but it appears that jsdoc can call process.exit before writes are complete, so jsdoc's output can be cut off. See nodejs/node#3033 and nodejs/node#2972.
The text was updated successfully, but these errors were encountered: