From bbe97e4d30b48f968a4522015e9a6a44cd361c5c Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 22 Jul 2026 08:06:06 -0400 Subject: [PATCH] docs(desktop): README no longer needs --legacy-peer-deps; document web exclusion --- desktop/README.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/desktop/README.md b/desktop/README.md index c8c19ad..ace1853 100644 --- a/desktop/README.md +++ b/desktop/README.md @@ -40,12 +40,17 @@ done Run from the **repository root** (this is a workspace member): ```bash -npm install --workspace desktop --legacy-peer-deps +npm install ``` -`--legacy-peer-deps` is currently required: the sibling `n-link-core` package is -still on Vue 2 and its peer ranges conflict. It can be dropped once `n-link-core` -is ported to Vue 3. +`--legacy-peer-deps` is no longer needed — `n-link-core` is on Vue 3 as of the +frontend port. + +Note that the root `package.json` workspaces list contains only `desktop` and +`n-link-core`. `web/` is deliberately excluded: it is still on Nuxt 2 and pulls +`tailwindcss@1.9.6`, which npm hoists to the root and which then shadows the +`tailwindcss@3` that `desktop` and `@tailwindcss/forms` require. Restore the +entry when `web` is migrated. ## Development