mirror of
https://github.com/speice-io/isomorphic-rust
synced 2024-11-04 15:18:26 -05:00
63ac0db821
Does in fact work with `--mode=production`
28 lines
1.0 KiB
Bash
Executable File
28 lines
1.0 KiB
Bash
Executable File
DIR="$(dirname $0)"
|
|
WASM_DIR="$DIR/target/wasm32-unknown-unknown"
|
|
WASM_NAME="$(cat "$DIR/Cargo.toml" | grep name | sed 's/name = "//' | sed 's/"//g')"
|
|
APP_DIR="$DIR/dist/"
|
|
|
|
if [ ! -d "$APP_DIR" ]; then
|
|
mkdir "$APP_DIR"
|
|
fi
|
|
cp "$DIR/static/"* "$APP_DIR"
|
|
|
|
if [ -z "$(which cargo)" ]; then
|
|
echo 'Must install `cargo` before proceeding. Please see https://rustup.rs/ for more information.'
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "$(which wasm-bindgen)" ]; then
|
|
echo "Installing wasm-bindgen-cli"
|
|
cargo install wasm-bindgen-cli
|
|
fi
|
|
|
|
# Patch from: https://github.com/webpack/webpack/pull/7983
|
|
cp "$DIR/WasmMainTemplatePlugin.patched.js" "$DIR/node_modules/webpack/lib/wasm/WasmMainTemplatePlugin.js"
|
|
|
|
cargo +nightly build --target=wasm32-unknown-unknown && \
|
|
wasm-bindgen "$WASM_DIR/debug/$WASM_NAME.wasm" --out-dir "$APP_DIR" --no-typescript && \
|
|
# --mode=production requires https://github.com/webpack/webpack/pull/7732
|
|
"$DIR/node_modules/webpack-cli/bin/cli.js" --mode=production "$APP_DIR/app_loader.js" -o "$APP_DIR/bundle.js"
|