17 lines
358 B
Bash
Executable File
17 lines
358 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e pipefail
|
|
|
|
# build program,
|
|
anchor build -- --features enable-gpl
|
|
|
|
# patch types, which we want in rust, but anchor client doesn't support
|
|
./idl-fixup.sh
|
|
|
|
# update idl
|
|
cp -v ./target/idl/mango_v4.json .
|
|
# update types in ts client package
|
|
cp -v ./target/types/mango_v4.ts ./ts/client/src/mango_v4.ts
|
|
|
|
(cd ./ts/client && yarn tsc)
|