From 61b9e7919d0555e32598254b4db16bd307f80d02 Mon Sep 17 00:00:00 2001 From: kould Date: Mon, 15 Jun 2026 02:47:35 +0800 Subject: [PATCH] fix: enable wasm feature for wasm-pack targets --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5b0de543..48fe92d1 100644 --- a/Makefile +++ b/Makefile @@ -30,11 +30,11 @@ build: ## Build the WebAssembly package (artifact goes to ./pkg). wasm-build: - $(WASM_PACK) build --release --target nodejs + $(WASM_PACK) build --release --target nodejs -- --features wasm ## Execute wasm-bindgen tests under Node.js (wasm32 target). test-wasm: - $(WASM_PACK) test --node -- --package kite_sql --lib + $(WASM_PACK) test --node -- --features wasm --package kite_sql --lib ## Run the sqllogictest harness against the configured .slt suite. test-slt: