refactor: move volta logic

This commit is contained in:
Jef LeCompte
2022-06-29 15:37:53 -07:00
parent 9aa86428fe
commit dbfbe9b6da
4 changed files with 40 additions and 24 deletions

View File

@@ -495,7 +495,13 @@ function translateArchToDistUrl(arch: string): string {
}
export function parseNodeVersionFile(contents: string): string {
let nodeVersion = contents.trim();
let nodeVersion;
if (contents.includes('volta')) {
nodeVersion = JSON.parse(contents).volta.node;
} else {
nodeVersion = contents.trim();
}
if (/^v\d/.test(nodeVersion)) {
nodeVersion = nodeVersion.substring(1);