New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

javy-cli

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

javy-cli - npm Package Compare versions

Comparing version

to
0.1.1

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",