Fix style issues and build

Build the project using `npm run build` and run prettier using `npm run
format`
This commit is contained in:
Pablo Ifrán 2023-01-18 10:00:38 -03:00
parent 3d009a5143
commit 59a78899a9
4 changed files with 30 additions and 14 deletions

View file

@ -65,14 +65,17 @@ export async function findPyPyVersion(
));
if (!installDir) {
({installDir, resolvedPythonVersion, resolvedPyPyVersion} =
await pypyInstall.installPyPy(
pypyVersionSpec.pypyVersion,
pypyVersionSpec.pythonVersion,
architecture,
allowPreReleases,
releases
));
({
installDir,
resolvedPythonVersion,
resolvedPyPyVersion
} = await pypyInstall.installPyPy(
pypyVersionSpec.pypyVersion,
pypyVersionSpec.pythonVersion,
architecture,
allowPreReleases,
releases
));
}
const pipDir = IS_WINDOWS ? 'Scripts' : 'bin';