simi 0.2.1

A framework for building wasm front-end web application in Rust
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"
for x in ./examples/*; do
    cargo +nightly build $TARGET --manifest-path=$x/Cargo.toml
done

echo "Build all ./stable-examples"
for x in ./stable-examples/*; do
    cargo build $TARGET --manifest-path=$x/Cargo.toml
done