dodrio 0.1.0

A fast, bump-allocated virtual DOM library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash

cd $(dirname $0)
set -eux

cargo fmt --all || true
cargo check --all --target wasm32-unknown-unknown

for x in ./examples/*; do
    wasm-pack build --target no-modules "$x"
done