Skip to content

Commit 351ca03

Browse files
committed
fixup!
1 parent 93f3ea1 commit 351ca03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/site/next-data/generators/majorNodeReleases.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
import nodevu from '@nodevu/core';
44

5-
const nodevuData = await nodevu({ fetch });
6-
75
/**
86
* Filters Node.js release data to return only major releases with documented support.
97
*/
108
export default async function getMajorNodeReleases() {
9+
const nodevuData = await nodevu({ fetch });
10+
1111
return Object.entries(nodevuData).filter(([version, { support }]) => {
1212
// Filter out those without documented support
1313
// Basically those not in schedule.json

0 commit comments

Comments
 (0)