Error: The partial docs could not be found
See original GitHub issuehi there, in my package.json I have
...
"build:utils": "jsdoc2md --files ./resources/assets/jsx/app/utils/*.ts* --configure ./jsdoc2md.json > ./resources/assets/jsx/docs/utils.md",
if I run by shell (MacOS, jsdoc2md v5.0.0)
$ jsdoc2md --files ./resources/assets/jsx/app/utils/*.ts* --configure ./jsdoc2md.json > ./resources/assets/jsx/docs/utils.md
all works fine, but if I run
$ yarn build:utils
I got
yarn run v1.17.0
$ jsdoc2md --files ./resources/assets/jsx/app/utils/*.ts* --configure ./jsdoc2md.json > ./resources/assets/jsx/docs/utils.md
Error: The partial docs could not be found
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
any clue?
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
How to Solve The partial head could not be found Handlebars
I run ExpressJS and installed Handlebars as a template engine. I'm using AdminLTE and split it up to 6 hbs files in /views/layouts...
Read more >Partials not found · Issue #151 · pillarjs/hbs - GitHub
Hi. Im trying to include hbs partials on my main.hbs but im getting an error that partials could not be found.
Read more >How to fix Hugo's 'partial not found' error message? - Kodify.net
The 'partial not found' error message happens when Hugo cannot find a partial that we reference in a theme template file (GitHub, 2017)....
Read more >New partials not working in handlebars example - Glitch Support
Hi, I am trying to use a remix of the handlebars template example which works fine until I create new partials and include...
Read more >Working with JavaScript in Visual Studio Code
In these cases, VS Code's IntelliSense will operate in partial mode. Partial mode tries its best to provide IntelliSense for any JavaScript or...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

thanks for the workaround @linorabolini …
closing as this is not an issue with jsdoc2md itself.
I got this error, jsdoc works for me. I checked all the source code and arrived to the DmD node package.
I checked the
partialsfolder and I compared the one I have with the one in the repo.The one in the repo HAS a
docsfolder. my node_modules doesn’t have it. I think it might be related to yarn or some dependency lock. Will keep investigating.Update: it seems that the
.yarncleanfile has listeddocsas a folder to cleanup. So it doesn’t get installed innode_modules.https://jmp.sh/c9Gt8IM
FIX: just remove
docsfolder from the list in.yarncleanOr we can just change the name of the partials folder.@75lb @gfazioli ^ 😃