12345678910111213141516171819202122232425262728293031323334 |
- #!/usr/bin/env bash
- set -e
- SCRIPT_PATH="$(dirname "${BASH_SOURCE[0]}")"
- cd $SCRIPT_PATH
- # Load and export variables from root .env file into shell environment
- set -a
- . ../.env
- set +a
- yarn clean
- # Install hydra codegen in separate dir to avoid dependency clashes
- cd ./codegen
- yarn
- cd ..
- # Generate types and server code
- yarn typegen
- yarn codegen:noinstall
- yarn format
- # We run yarn again to ensure graphql-server dependencies are installed
- # and are inline with root workspace resolutions
- yarn
- # Add missing typeorm binary symlink
- ln -s ../../../../../node_modules/typeorm/cli.js ./generated/graphql-server/node_modules/.bin/typeorm
- yarn workspace query-node codegen
- yarn workspace query-node build:prod
- yarn workspace query-node-mappings build
|