### Install Dependencies with Yarn Source: https://github.com/graphprotocol/common-ts/blob/master/README.md Use this command to install all necessary project dependencies using Yarn workspaces. ```sh yarn ``` -------------------------------- ### Build Project with Yarn Source: https://github.com/graphprotocol/common-ts/blob/master/README.md Execute this command to build the project. This step is typically required before publishing or running tests. ```sh yarn prepublish ``` -------------------------------- ### Run Test Suite with Yarn Source: https://github.com/graphprotocol/common-ts/blob/master/README.md This command runs the project's test suite. Note that specific environment variables (POSTGRES_TEST_HOST, POSTGRES_TEST_USERNAME, POSTGRES_TEST_PASSWORD, POSTGRES_TEST_DATABASE, and optionally POSTGRES_TEST_PORT) must be defined for the tests to connect to a PostgreSQL database. ```sh yarn test ``` -------------------------------- ### Publish Release with Yarn Source: https://github.com/graphprotocol/common-ts/blob/master/README.md Use this command to publish a new version of the package. Ensure that the changelog(s) have been updated before running this command. ```sh yarn publish ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.