We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch jsdoc-vuejs@3.0.9 for the project I'm working on.
jsdoc-vuejs@3.0.9
Here is the diff that solved my problem:
diff --git a/node_modules/jsdoc-vuejs/index.js b/node_modules/jsdoc-vuejs/index.js index 2205f33..30b7019 100644 --- a/node_modules/jsdoc-vuejs/index.js +++ b/node_modules/jsdoc-vuejs/index.js @@ -17,7 +17,7 @@ exports.handlers = { beforeParse(e) { if (/\.vue$/.test(e.filename)) { exportDefaultLines[e.filename] = seekExportDefaultLine(e.source, e.filename); - e.source = extractVueScript(e.filename); + e.source = extractVueScript(e.filename).replace(/\:\s(string|number|boolean|Undefined|null|Array|object|any|void)/ig, ''); } }, newDoclet(e) {
This issue body was partially generated by patch-package.
The text was updated successfully, but these errors were encountered:
Hi @midnight-ht, and thanks!
I'm not sure to correctly understand the patch, would it be possible for you to add some tests? Thanks!
Sorry, something went wrong.
No branches or pull requests
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch
jsdoc-vuejs@3.0.9
for the project I'm working on.Here is the diff that solved my problem:
This issue body was partially generated by patch-package.
The text was updated successfully, but these errors were encountered: