You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. #!/bin/bash
  2. set -v
  3. . ./bootstrap.sh
  4. wasm-pack build --target web --release --out-dir www/pkg
  5. if [ $? -eq 0 ]; then
  6. basic-http-server ./www -a 0.0.0.0:4001
  7. fi