From 586baa0922cda3ea07db0ddd64ea19a288d2ff5a Mon Sep 17 00:00:00 2001 From: Exidex <16986685+Exidex@users.noreply.github.com> Date: Sat, 3 Feb 2024 22:05:18 +0100 Subject: [PATCH] Uncomment npm publish --- js/build/src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/build/src/main.ts b/js/build/src/main.ts index 1430411..e4fcf36 100644 --- a/js/build/src/main.ts +++ b/js/build/src/main.ts @@ -139,9 +139,9 @@ async function doPublish() { build(projectRoot, false) console.log("Publishing npm deno package...") - // execSync('npm publish', { stdio: "inherit", cwd: denoProjectPath }) + execSync('npm publish', { stdio: "inherit", cwd: denoProjectPath }) console.log("Publishing npm api package...") - // execSync('npm publish', { stdio: "inherit", cwd: apiProjectPath }) + execSync('npm publish', { stdio: "inherit", cwd: apiProjectPath }) console.log("Fetching architecture and target...") const rustcVv = execSync('rustc -Vv', { encoding: "utf-8" });