mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00

* Switch to build script * temp: export the result of the types build * changelog * Get output result * Remove debug code * Fix warning visibility * Move the web build between the rust steps. * Add debugging again * Close file, and await promises * drop the dumb cat
14 lines
264 B
Bash
Executable File
14 lines
264 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# exit when any command fails
|
|
set -e
|
|
|
|
echo "Building web"
|
|
yarn run build:web
|
|
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
|