-
Notifications
You must be signed in to change notification settings - Fork 152
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
JSDOC_ERROR: There are no input files to process. #137
Comments
you are using the command correctly, it's like this:
Which terminal on which platform are you using? If it's WIndows, try putting quotes around your file expression:
|
I use Gnome terminal on Ubuntu. |
strange, i just tested it successfully on Gnome terminal on Ubuntu.. maybe try reinstalling it.. which version of node and npm do you have? |
node 7.10 |
@75lb I casually found the cause of the error!
/**
* filters messages accordingly to include/exclude settings
* @param {*} messages
* @param {*} exclude
* @param {*} include
*/
/**
* filters messages accordingly to include/exclude settings
*
* @param {*} messages
* @param {*} exclude
* @param {*} include
*/ |
Finally, I dug out that the error appears when you have a folder starting with the underscore in your path. In my case it was To reproduce you can clone For me, it is not so critical to change the name of the folder, so I'm going to close this issue. Still not sure is it reproducible on other machines except the mine. Thank you for your attention to this issue |
i tracked it down to jsdoc (which jsdoc2md uses internally).. by default, jsdoc ignores file names beginning with a leading underscore - no idea why.. See the "Default configuration options" section of the config file instructions. You can pass in a custom jsdoc config using the |
...heh so it's an expected behavior 😅 |
GitHub actions places files in a folder called `__w`, which causes JSDoc to ignore all source files. See jsdoc2md/jsdoc-to-markdown#137
Hi! I tried to figure out how to use this tool. I wanted to parse my
src/index.js
but without any success:Do I miss some steps which should be done before it?
The text was updated successfully, but these errors were encountered: