From 241ead9bd00cce30c24798d1b5bf8ef91d64b98c Mon Sep 17 00:00:00 2001 From: Nicholas Kissel Date: Mon, 6 Apr 2026 16:58:30 -0700 Subject: [PATCH] fix: remove unpublished sqlite-native optional deps to fix lockfile The @rivetkit/sqlite-native-* platform packages were listed as optionalDependencies but haven't been published to npm yet, causing ERR_PNPM_OUTDATED_LOCKFILE in CI. Remove them until they are published. Also regenerates the lockfile to fix a broken @hono/node-server entry. --- pnpm-lock.yaml | 6 +++--- rivetkit-typescript/packages/sqlite-native/package.json | 7 ------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f1500907db..5dc1588c53 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -271,7 +271,7 @@ importers: dependencies: '@hono/node-server': specifier: ^1.19.1 - version: 1.19.12(hono@4.11.9) + version: 1.19.9(hono@4.11.9) '@rivetkit/engine-envoy-client': specifier: workspace:* version: link:../envoy-client @@ -23765,7 +23765,7 @@ snapshots: '@modelcontextprotocol/sdk@1.25.3(hono@4.11.9)(zod@3.25.76)': dependencies: - '@hono/node-server': 1.19.12(hono@4.11.9) + '@hono/node-server': 1.19.9(hono@4.11.9) ajv: 8.17.1 ajv-formats: 3.0.1(ajv@8.17.1) content-type: 1.0.5 @@ -23787,7 +23787,7 @@ snapshots: '@modelcontextprotocol/sdk@1.25.3(hono@4.11.9)(zod@4.1.13)': dependencies: - '@hono/node-server': 1.19.12(hono@4.11.9) + '@hono/node-server': 1.19.9(hono@4.11.9) ajv: 8.17.1 ajv-formats: 3.0.1(ajv@8.17.1) content-type: 1.0.5 diff --git a/rivetkit-typescript/packages/sqlite-native/package.json b/rivetkit-typescript/packages/sqlite-native/package.json index 2a8e48c3a7..68aa80d7a9 100644 --- a/rivetkit-typescript/packages/sqlite-native/package.json +++ b/rivetkit-typescript/packages/sqlite-native/package.json @@ -30,13 +30,6 @@ "build": "napi build --platform --release", "prepublishOnly": "napi prepublish -t npm" }, - "optionalDependencies": { - "@rivetkit/sqlite-native-linux-x64-gnu": "2.1.6", - "@rivetkit/sqlite-native-linux-arm64-gnu": "2.1.6", - "@rivetkit/sqlite-native-darwin-x64": "2.1.6", - "@rivetkit/sqlite-native-darwin-arm64": "2.1.6", - "@rivetkit/sqlite-native-win32-x64-msvc": "2.1.6" - }, "devDependencies": { "@napi-rs/cli": "^2.18.0" }