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
I dont have "repository" in my package.json and did not defined github-corners option. But the updated code expects one of them to be there:
"repository"
package.json
github-corners
npx -y markdown-to-html-cli -s CHANGELOG.md --output ./CHANGELOG.html ✔ /node_modules/markdown-to-html-cli/lib/utils.js:22 options['github-corners'] = opts['github-corners'] ?? options['github-corners'] ?? (typeof pgkData.repository === 'string' ? pgkData.repository : pgkData.repository.url); ^ TypeError: Cannot read properties of undefined (reading 'url')
This was introduced with 63a9786#diff-852d90245bbe147114049b7940720369a5dd1c564e5d1ab29b1bf8eae193cef3L28-R25
By there removal of if(pgkData.repository & so now it just expects repository to be there
if(pgkData.repository &
The text was updated successfully, but these errors were encountered:
fix: fix github-corners option issue. #98
2ecf971
released v5.0.1 #98
a89f35f
v5.0.1 released v5.0.1 #98 a89f35f
c207751
No branches or pull requests
I dont have
"repository"
in mypackage.json
and did not definedgithub-corners
option. But the updated code expects one of them to be there:This was introduced with 63a9786#diff-852d90245bbe147114049b7940720369a5dd1c564e5d1ab29b1bf8eae193cef3L28-R25
By there removal of
if(pgkData.repository &
so now it just expects repository to be thereThe text was updated successfully, but these errors were encountered: