From 8d8aefa5eccb2a670c5d0a2dfb10ae463484d94f Mon Sep 17 00:00:00 2001 From: Grey Date: Wed, 20 Mar 2024 16:23:03 -0400 Subject: [PATCH] chore(npm): fix napi argument (#2808) According to the print out here: https://github.com/GlareDB/glaredb/actions/runs/8363511181/job/22898484272#step:10:27 `napi` doesn't accept any args (`=true` in this case) for boolean flags. --- bindings/nodejs/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/nodejs/package.json b/bindings/nodejs/package.json index a0b303f2a..7844382df 100644 --- a/bindings/nodejs/package.json +++ b/bindings/nodejs/package.json @@ -47,7 +47,7 @@ "artifacts": "napi artifacts", "build": "napi build --platform --release", "build:debug": "napi build --platform", - "prepublishOnly": "napi prepublish --skip-gh-release=true -t npm", + "prepublishOnly": "napi prepublish --skip-gh-release -t npm", "test": "ava", "universal": "napi universal", "version": "napi version"