simi 0.1.3

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
14
15
#!/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-in-context/Cargo.toml
cargo +nightly build $TARGET --manifest-path=./examples/e-clock-sub-app-in-context/Cargo.toml
cargo +nightly build $TARGET --manifest-path=./examples/f-sub-app-created-by-simi/Cargo.toml
cargo +nightly build $TARGET --manifest-path=./examples/todo/Cargo.toml
cargo +nightly build $TARGET --manifest-path=./examples/fetch-json/Cargo.toml