1234567891011121314151617181920212223242526 |
- #!/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
- # only use this when new Hydra releases and contents of `generated/` folder needs to be refreshed
- yarn clean
- yarn codegen:noinstall
- yarn typegen # if this fails try to run this command outside of yarn workspaces
- # We run yarn again to ensure graphql-server dependencies are installed
- # and are inline with root workspace resolutions
- yarn
- yarn workspace query-node codegen
- yarn workspace query-node build
- yarn workspace query-node-mappings build
|