Comparing version
23
index.js
@@ -106,3 +106,3 @@ #!/usr/bin/env node | ||
function binaryUrl(version) { | ||
return `https://github.com/${REPO}/releases/download/${version}/javy-${platarch()}-${version}.gz`; | ||
return `https://github.com/${REPO}/releases/download/${version}/${NAME}-${platarch()}-${version}.gz`; | ||
} | ||
@@ -112,5 +112,5 @@ | ||
"arm-macos", | ||
"x64_64-macos", | ||
"x64_64-windows", | ||
"x64_64-linux", | ||
"x86_64-macos", | ||
"x86_64-windows", | ||
"x86_64-linux", | ||
]; | ||
@@ -155,3 +155,2 @@ | ||
const args = process.argv.slice(2); | ||
// TODO: Check if this needs to be changed when javy is installed via `npm install`. | ||
return args; | ||
@@ -161,11 +160,11 @@ } | ||
async function buildBinary() { | ||
const repoDir = cacheDir("build", "javy"); | ||
const repoDir = cacheDir("build", NAME); | ||
try { | ||
console.log("Downloading Javy's source code..."); | ||
console.log(`Downloading ${NAME}'s source code...`); | ||
childProcess.execSync( | ||
`git clone https://github.com/shopify/javy ${repoDir}` | ||
`git clone https://github.com/${REPO} ${repoDir}` | ||
); | ||
console.log("Downloading WASI SDK..."); | ||
childProcess.execSync("make download-wasi-sdk", { cwd: repoDir }); | ||
console.log("Building Javy..."); | ||
console.log(`Building ${NAME}...`); | ||
childProcess.execSync("make", { cwd: repoDir }); | ||
@@ -175,12 +174,12 @@ } catch (e) { | ||
console.error(""); | ||
console.error("BUILDING JAVY FAILED"); | ||
console.error(`BUILDING ${NAME} FAILED`); | ||
console.error( | ||
"Please make sure you have cmake, Rust with the wasm32-wasi target, wasmtime-cli and cargo-wasi installed" | ||
); | ||
console.error("See the javy README for more details."); | ||
console.error("See the README for more details."); | ||
} | ||
await fs.promises.rename( | ||
path.join(repoDir, "target", "release", "javy"), | ||
path.join(repoDir, "target", "release", NAME), | ||
binaryPath() | ||
); | ||
} |
{ | ||
"name": "javy-cli", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
6299
-1.38%165
-0.6%