From 9779d810795e4586cc0dd6c80b958e199f83e154 Mon Sep 17 00:00:00 2001 From: Gar Date: Wed, 16 Mar 2022 11:04:43 -0700 Subject: [PATCH] docs: explain that linked deps need `npm install` ran in them --- 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