simi 0.1.2

A framework help building wasm-front-end web application in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

set -e

TARGET="--target=wasm32-unknown-unknown"

echo "Build all ./examples"
cargo +nightly build $TARGET --manifest-path=./examples/a-counter/Cargo.toml
cargo +nightly build $TARGET --manifest-path=./examples/b-counter-component/Cargo.toml
cargo +nightly build $TARGET --manifest-path=./examples/c-counter-nested-component/Cargo.toml
cargo +nightly build $TARGET --manifest-path=./examples/d-clock-ubu-component/Cargo.toml
cargo +nightly build $TARGET --manifest-path=./examples/e-clock-sub-app/Cargo.toml
cargo +nightly build $TARGET --manifest-path=./examples/todo/Cargo.toml