Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 922 Bytes

File metadata and controls

8 lines (7 loc) · 922 Bytes

Setting up your development environment

  1. Install the current LTS version of Node.
    • If you are using NVM (recommended), running nvm install will install the latest version, and running nvm use will automatically choose the right Node version for you.
  2. Run corepack enable to install Yarn via Corepack.
    • If you have Yarn installed globally via Homebrew or NPM, you'll need to uninstall it before running this command.
  3. Run yarn install to install dependencies and run any required post-install scripts.
  4. Run yarn simple-git-hooks to add a Git hook to your local development environment which will ensure that all files pass linting before you push a branch.