From 8f12b3ff5363a2a12009e66a45cff7d5c6798218 Mon Sep 17 00:00:00 2001 From: Mark Phelps <209477+markphelps@users.noreply.github.com> Date: Thu, 4 Apr 2024 10:35:31 -0400 Subject: [PATCH] fix: dont target nodejs for actual build --- build/wasm/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/wasm/main.go b/build/wasm/main.go index bd20fd8b..0c4f3645 100644 --- a/build/wasm/main.go +++ b/build/wasm/main.go @@ -122,7 +122,7 @@ func wasmBuild(ctx context.Context, client *dagger.Client, hostDirectory *dagger rust = rust. WithExec([]string{"cargo", "install", "wasm-pack"}). // Install wasm-pack WithWorkdir("/src/flipt-engine-wasm"). - WithExec([]string{"wasm-pack", "build", "--scope", "flipt-io", "--target", "nodejs"}) // Build the wasm package + WithExec([]string{"wasm-pack", "build", "--scope", "flipt-io"}) // Build the wasm package var err error