fix: drop unused fast_image_resize, drop toolchain back to 1.86, limit emscripten build to pacman project properly

This commit is contained in:
Ryan Walters
2025-09-18 23:16:55 -05:00
parent cc06cd88a1
commit 408b660490
4 changed files with 7 additions and 34 deletions

View File

@@ -52,7 +52,7 @@ async function build(release: boolean, env: Record<string, string> | null) {
release ? "release" : "debug"
}`
);
await $`cargo build --target=wasm32-unknown-emscripten ${
await $`cargo build --target=wasm32-unknown-emscripten --package pacman ${
release ? "--release" : ""
}`.env(env ?? undefined);