From 18b6b849a0e293a128e2a33fde362ad644fb9c3e Mon Sep 17 00:00:00 2001 From: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com> Date: Tue, 26 Mar 2024 08:15:58 -0400 Subject: [PATCH] Replace yalc recommendation for instructions to do the same thing with pnpm (#254) --- README.md | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 3c951d6..c195a04 100644 --- a/README.md +++ b/README.md @@ -35,18 +35,8 @@ let jwt = await client.login(loginForm).jwt; ## Development -You can use [yalc](https://github.com/wclr/yalc) to develop and test changes locally: +Use `pnpm add` to develop and test changes locally: ``` -pnpm i --global add yalc - -# Go to lemmy-js-client dir -yalc publish --push - -# Go to your client dir -yalc add lemmy-js-client - -# To do updates, go back to the lemmy-js-client dir -# This also updates it, in every dir you've added it. -yalc publish --push +pnpm add path/to/lemmy-js-client ```