Skip to content

Latest commit

 

History

History
64 lines (41 loc) · 1.07 KB

development.md

File metadata and controls

64 lines (41 loc) · 1.07 KB

This repository is a monorepo and makes use of Turborepo and PNPM workspaces.

Set up

Before you begin, make sure you have the following set up on your local machine.

All commands below should be run at the root level of the cloned repository.

Install package dependencies

pnpm install

Development setup

You can run all the packages in development mode using the following command:

pnpm dev

Or you can run development for the individual packages using the following command:

pnpm dev:[dirname]

For React it would be:

pnpm dev:react

Build

You can build all packages using the following command:

pnpm build

Or you can run build for the individual packages using the following command:

pnpm build:[dirname]

For React it would be:

pnpm build:react

Change logs

To generate a changelog entry, run the following command:

pnpm changeset