hookshot/scripts/build-app.sh
Will Hunt 49b9483129
Revert "Handle RSA token handling in Rust (#915)"
This reverts commit 6482c7ed55e60f53f64b6809a742a1508ec0fe37.
2024-04-16 17:20:17 +01:00

14 lines
266 B
Bash
Executable File

#!/bin/bash
# exit when any command fails
set -e
echo "Building Rust layer"
yarn run build:app:rs
echo "Running rust-typescript definitions fix"
yarn run build:app:fix-defs
echo "Building Typescript layer"
yarn run build:app
echo "Building web"
yarn run build:web