From 8ff1dfaaeeb32e88c879b96a786835fe13526a88 Mon Sep 17 00:00:00 2001 From: Gar Date: Thu, 17 Mar 2022 11:20:03 -0700 Subject: [PATCH] docs: explain that linked deps need `npm install` ran in them (#4575) --- docs/content/configuring-npm/package-json.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/content/configuring-npm/package-json.md b/docs/content/configuring-npm/package-json.md index a6298f0c436c3..0c2047ad9abe0 100644 --- a/docs/content/configuring-npm/package-json.md +++ b/docs/content/configuring-npm/package-json.md @@ -690,6 +690,10 @@ This feature is helpful for local offline development and creating tests that require npm installing where you don't want to hit an external server, but should not be used when publishing packages to the public registry. +*note*: Packages linked by local path will not have their own +dependencies installed when `npm install` is ran in this case. You must +run `npm install` from inside the local path itself. + ### devDependencies If someone is planning on downloading and using your module in their