From 75b83626886ffd2e2b5bd1d21116dbb3175171a2 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Mon, 30 Jun 2025 22:15:13 +0300 Subject: [PATCH] bindings/javascript: Don't do Github release We do the release ourselves, don't ask napi-rs to do it. Fixes the following error: ``` RequestError [HttpError]: Resource not accessible by integration - https://docs.github.com/rest/releases/releases#create-a-release ``` --- bindings/javascript/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindings/javascript/package.json b/bindings/javascript/package.json index 65e525ea2..4eb741e8b 100644 --- a/bindings/javascript/package.json +++ b/bindings/javascript/package.json @@ -10,6 +10,7 @@ "types": "index.d.ts", "napi": { "name": "turso", + "release": false, "triples": { "defaults": false, "additional": [ @@ -41,4 +42,4 @@ "version": "napi version" }, "packageManager": "yarn@4.6.0" -} \ No newline at end of file +}