Skip to content

Commit

Permalink
perf(bindings): Invert Wasm size shrink (#9224)
Browse files Browse the repository at this point in the history
Reverts #9191

I'm reverting because it applies even to `@swc/core`. Instead, I used an environment variable.
  • Loading branch information
kdy1 committed Jul 12, 2024
1 parent 260f806 commit aa7f791
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions bindings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@ resolver = "2"
# lto = "fat"

# debug = true
opt-level = 'z'
# opt-level = 'z'

# Strip debug symbols
strip = "symbols"

codegen-units = 1

[profile.dev.package."*"]
debug-assertions = false
4 changes: 2 additions & 2 deletions bindings/binding_typescript_wasm/scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
set -eux

export CARGO_PROFILE_RELEASE_LTO="fat"
# export CARGO_PROFILE_RELEASE_OPT_LEVEL="z"
export CARGO_PROFILE_RELEASE_OPT_LEVEL="z"
wasm-pack build --out-name wasm --release --scope=swc --target nodejs
ls -al ./pkg

node ./scripts/patch.mjs
node ./scripts/patch.mjs

0 comments on commit aa7f791

Please sign in to comment.