From 85f246e7b68a12c8b93096893f92084609c5e79c Mon Sep 17 00:00:00 2001 From: Rawi2115 Date: Wed, 26 Aug 2026 13:16:15 +0300 Subject: [PATCH] docs: update CONTRIBUTING.md to reflect pnpm/Biome migration CONTRIBUTING.md still referenced yarn as the package manager, but the project migrated to pnpm on June 11, 2025 in commit 4fb7c25 ("Housekeeping: replace yarn with pnpm"). It also referenced Prettier as the formatter, but formatting and linting were migrated to Biome on May 13, 2026 in commit 4539e81 ("Switch linting & formatting to biome"). --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bd44a56b..24abd3dd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,9 +10,9 @@ If you're here though, you're probably one of the fewer ones. ## Things to keep in mind The repository is holding the code for both Mantine DataTable package and its documentation website. -Since the repo root contains a `yarn.lock` file, it **should be obvious** that you have to use [Yarn](https://yarnpkg.com/) to install dependencies and run scripts. -Use `yarn dev` to start the development server, `yarn lint` to check the code for linting errors, and `yarn build` to check that the code compiles. -Running `yarn format` will automatically format your code with [Prettier](https://prettier.io/), so that it adheres to the project’s coding style. +Since the repo root contains a `pnpm-lock.yaml` file, it **should be obvious** that you have to use [pnpm](https://pnpm.io) to install dependencies and run scripts. +Use `pnpm dev` to start the development server, `pnpm lint` to check the code for linting errors, and `pnpm build` to check that the code compiles. +Running `pnpm format` will automatically format your code with [Biome](https://biomejs.dev/formatter/), so that it adheres to the project’s coding style. This is a [Next.js](https://nextjs.org/) project with an [app router](https://nextjs.org/docs/app/building-your-application/routing) and makes use of [React Server Components](). **Make sure you have a good grasp of the above before attempting to contribute.**