12345678910111213141516171819202122 |
- #!/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
- yarn codegen:noinstall
- yarn mappings:build
- # We run yarn again to ensure graphql-server dependencies are installed
- # and are inline with root workspace resolutions
- yarn
- ln -s ../../../../../node_modules/typeorm/cli.js generated/graphql-server/node_modules/.bin/typeorm || :
|