6 lines
156 B
Bash
Executable file
6 lines
156 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eu
|
|
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
|
cd "$script_path"
|
|
|
|
trunk build --release && ls -lh ../dist/*.wasm
|