Project Management
As Xane is a monorepo, you are able to run any command on top level such as installing dependencies, building the client, developing the frontend, running unit tests, etc.
Below are the commands you can run to manage the projects.
Common Commands
You can install all the dependencies with the command below:
pnpm install
You can run tests with the command below:
pnpm test
You can identify potential mistakes with the command below:
pnpm lint
You can format the source code with the command below:
pnpm format
You can remove installed dependencies and builds with the command below:
pnpm clean
Packages Commands
You can build the packages with the command below:
pnpm build:packages
Client Commands
You can build the rollup client with the command below:
pnpm build:client
Docs Commands
You can start a development server for the docs website with the command below:
pnpm dev:docs
You can build the docs website with the command below:
pnpm build:docs
Frontend Commands
You can build the frontend with the command below:
pnpm build:frontend
You can start a development server for the frontend with the command below:
pnpm dev:frontend