From 2ac5e97383d7ca6faf1c66f7ca7b6c6afd8b16dc Mon Sep 17 00:00:00 2001 From: Jacob Heider Date: Mon, 1 Jul 2024 14:12:46 -0400 Subject: [PATCH] fix(wasm-pack) closes #6585 --- projects/crates.io/wasm-pack/package.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/projects/crates.io/wasm-pack/package.yml b/projects/crates.io/wasm-pack/package.yml index 051cf1b2..3fceff6c 100644 --- a/projects/crates.io/wasm-pack/package.yml +++ b/projects/crates.io/wasm-pack/package.yml @@ -8,16 +8,18 @@ versions: dependencies: # It needs Rust and Cargo at runtime as well (for building) - rust-lang.org: "*" - rust-lang.org/cargo: "*" + rust-lang.org: '*' + rust-lang.org/cargo: '*' build: + dependencies: + cmake.org: 3 env: RUSTFLAGS: - # Ignore warnings (to focus on errors) - - -A warnings - # Reduce build size by excluding debug symbols. - - -C debuginfo=0 + # Ignore warnings (to focus on errors) + - -A warnings + # Reduce build size by excluding debug symbols. + - -C debuginfo=0 script: | cargo install --path . --root {{prefix}} @@ -27,4 +29,4 @@ test: test "$(wasm-pack --version)" = "wasm-pack {{version.raw}}" provides: - - bin/wasm-pack \ No newline at end of file + - bin/wasm-pack