From d0aaaf8aa3a2a429293ea750b2a0c89f67731305 Mon Sep 17 00:00:00 2001 From: Akemmanuel Date: Mon, 15 Dec 2025 11:02:03 -0300 Subject: [PATCH] Update package manager from pnpm to bun --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5e54d6c60840..c1871084f3a1 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Please read [`CONTRIBUTING.md`](https://github.com/graphprotocol/docs/blob/main/ ## Local Setup -This project is built on [Next.js](https://nextjs.org/). You can run it on your machine, provided you have [Node 22+](https://nodejs.org/en/) and [`pnpm`](https://pnpm.io) installed. +This project is built on [Next.js](https://nextjs.org/). You can run it on your machine, provided you have [Node 22+](https://nodejs.org/en/) and [`bun`](https://bun.sh) installed. First, clone the repo: @@ -25,13 +25,13 @@ cd docs Install the dependencies: ```bash -pnpm install +bun install ``` Then, run the project: ```bash -pnpm dev +bun dev ``` That’s it! Go to http://localhost:3000/docs to see it in action. Any change you make to a file in `website/src/pages` should be refreshed automatically in your browser.