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
Sorry, I am not able to create a fork & pull request at the moment.
The Normalization of git URLs (moduleInfo.repository) in index.js, line 40 and following does not work as intended.
40: moduleInfo.repository = json.repository.url.replace('git://github.com', 'https://github.com').replace('.git', ''); 41: moduleInfo.repository = json.repository.url.replace('git@github.com:', 'https://github.com/').replace('.git', '');
The assignment in line 40 has no effect as it is overwritten by the assignment in line 41. Suggested Fix:
Change line 41 as follows: moduleInfo.repository = moduleInfo.repository.replace('git@github.com:', 'https://github.com/').replace('.git', '');
The text was updated successfully, but these errors were encountered:
a3fefdb
Published in license-checker@2.0.2
license-checker@2.0.2
Sorry, something went wrong.
No branches or pull requests
Sorry, I am not able to create a fork & pull request at the moment.
The Normalization of git URLs (moduleInfo.repository) in index.js, line 40 and following does not work as intended.
40: moduleInfo.repository = json.repository.url.replace('git://github.com', 'https://github.com').replace('.git', '');
41: moduleInfo.repository = json.repository.url.replace('git@github.com:', 'https://github.com/').replace('.git', '');
The assignment in line 40 has no effect as it is overwritten by the assignment in line 41. Suggested Fix:
Change line 41 as follows:
moduleInfo.repository = moduleInfo.repository.replace('git@github.com:', 'https://github.com/').replace('.git', '');
The text was updated successfully, but these errors were encountered: