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 634ea5b commit e0bf8f6Copy full SHA for e0bf8f6
scripts/build-and-score-data.ts
@@ -130,6 +130,9 @@ async function buildAndScoreData() {
130
data = data.map(project => ({
131
...project,
132
npm: {
133
+ // Keep existing npm data (for scoped packages processed individually)
134
+ ...project.npm,
135
+ // Add bulk query results (for regular packages)
136
...(downloadsList.find(entry => entry.name === project.npmPkg)?.npm ?? {}),
137
// ...(downloadsListWeek.find(entry => entry.name === project.npmPkg)?.npm ?? {}),
138
},
0 commit comments