Skip to content

Commit 58219c4

Browse files
committed
refactor: add missing client WASM build in devbook
1 parent 88fa43a commit 58219c4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

docs/devbook/upgrade-repository-dependencies/upgrade_dependencies.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ git commit -am "chore: update Rust dependencies"
1313

1414
# Upgrade Rust outdated dependencies
1515
cargo upgrade "${CARGO_UPGRADE_OPTIONS}" --verbose
16+
cargo update
1617
# Let the CI run the tests at the end of the script
1718
# cargo test --all-features
1819
git commit -am "chore: upgrade Rust dependencies"
@@ -21,6 +22,11 @@ git commit -am "chore: upgrade Rust dependencies"
2122
cargo set-version --bump patch
2223
git commit -am "chore: bump crates versions"
2324

25+
# Build mithril-client wasm (to have latest version used in the explorer)
26+
pushd mithril-client-wasm || exit
27+
make build
28+
popd || exit
29+
2430
# Upgrade the documentation website dependencies
2531
pushd docs/website || exit
2632
make upgrade

0 commit comments

Comments
 (0)