Skip to content

Commit

Permalink
fix: dont target nodejs for actual build
Browse files Browse the repository at this point in the history
  • Loading branch information
markphelps committed Apr 4, 2024
1 parent 56ee8e9 commit 8f12b3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/wasm/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 8f12b3f

Please sign in to comment.