From c3ff9a97fa07ecdf78f98a5c920ada8e9083f50c Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Fri, 7 Nov 2025 12:52:28 -0800 Subject: [PATCH] Change installation commands from npm to pnpm Updated installation commands in setup.md to use pnpm instead of npm. `npm i` will fail with the branch due to conflicting requirements --- content/docs/tutorial/setup.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/tutorial/setup.md b/content/docs/tutorial/setup.md index 663d954..646df8f 100755 --- a/content/docs/tutorial/setup.md +++ b/content/docs/tutorial/setup.md @@ -17,9 +17,9 @@ $ git clone https://github.com/automerge/automerge-repo-quickstart # Cloning into 'automerge-repo-quickstart'... $ cd automerge-repo-quickstart $ git checkout without-automerge -$ npm install +$ pnpm install # ...installing dependencies... -$ npm run dev +$ pnpm dev ``` Visit [localhost:5173/](http://localhost:5173/) to see the app in its "starter" state, as a basic React app not yet using Automerge: the task list can be edited, but changes are not synced between users, and all local changes are lost when the page is closed or reloaded.