We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93f3ea1 commit 351ca03Copy full SHA for 351ca03
apps/site/next-data/generators/majorNodeReleases.mjs
@@ -2,12 +2,12 @@
2
3
import nodevu from '@nodevu/core';
4
5
-const nodevuData = await nodevu({ fetch });
6
-
7
/**
8
* Filters Node.js release data to return only major releases with documented support.
9
*/
10
export default async function getMajorNodeReleases() {
+ const nodevuData = await nodevu({ fetch });
+
11
return Object.entries(nodevuData).filter(([version, { support }]) => {
12
// Filter out those without documented support
13
// Basically those not in schedule.json
0 commit comments