Skip to content

Commit b3de3c9

Browse files
committed
Update collect-npm-stats.ts
1 parent 85dbbd0 commit b3de3c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/collect-npm-stats.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ async function processPackage(packageName: string): Promise<void> {
118118
const updatedData = await updateHistoricalData(packageName, allVersionDownloads, existingData);
119119

120120
// Write back to file
121-
await writeFile(filePath, JSON.stringify(updatedData, null, 2));
121+
await writeFile(filePath, JSON.stringify(updatedData));
122122

123123
console.log(`✅ Updated stats for ${packageName}`);
124124
console.log(` Versions: ${Object.keys(allVersionDownloads).join(', ')}`);

0 commit comments

Comments
 (0)