From 5ca83fdc9920143588e4d6072529c3d039ee7eeb Mon Sep 17 00:00:00 2001 From: Cory Grinstead Date: Fri, 21 Jun 2024 15:42:22 -0500 Subject: [PATCH] fix(node): node build (#1396) i have no idea why this fixes the build. --- node/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/package.json b/node/package.json index 117e9961..42e270d3 100644 --- a/node/package.json +++ b/node/package.json @@ -6,7 +6,7 @@ "types": "dist/index.d.ts", "scripts": { "tsc": "tsc -b", - "build": "npm run tsc && cargo-cp-artifact --artifact cdylib lancedb-node index.node -- cargo build --message-format=json", + "build": "npm run tsc && cargo-cp-artifact --artifact cdylib lancedb_node index.node -- cargo build --message-format=json", "build-release": "npm run build -- --release", "test": "npm run tsc && mocha -recursive dist/test", "integration-test": "npm run tsc && mocha -recursive dist/integration_test",