Skip to content

Commit

Permalink
Min node version 18, older dont get support / updates anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
wslaghekke committed Jan 9, 2024
1 parent 8709faf commit 22fff12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ async function getNodeLtsVersions() {
} as NodeVersion)
}
}
return versions.filter(it => Number(it.major) >= 10)
return versions.filter(it => Number(it.major) >= 18)
}

function groupBy<T, K extends keyof T>(items: T[], key: K): { [key: string]: T[] } {
Expand Down

0 comments on commit 22fff12

Please sign in to comment.