We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6e7c5f commit 5d695d9Copy full SHA for 5d695d9
scripts/expand_module_list_with_repo_data.js
@@ -123,7 +123,7 @@ async function addInformationFromPackageJson (moduleList) {
123
module.issues.push("There are no keywords in 'package.json'. We would use them as tags on the module list page.");
124
}
125
126
- if (moduleData.bugs && moduleData.bugs.url && moduleData.bugs.url.includes("github.com") && module.hasGithubIssues === false) {
+ if (module.url.includes("github.com") && module.hasGithubIssues === false) {
127
module.issues.push("Issues are not enabled in the GitHub repository. So users cannot report bugs. Please enable issues in your repo.");
128
129
} catch (error) {
0 commit comments