Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGar <gar+gh@danger.computer>2022-03-17 21:20:03 +0300
committerGitHub <noreply@github.com>2022-03-17 21:20:03 +0300
commit8ff1dfaaeeb32e88c879b96a786835fe13526a88 (patch)
treef12f627e7ade0521b9f1ca7e38e379b0edd73ebb /docs
parente9a2981f55f84ff521ef597883a4e732d08ce1c1 (diff)
docs: explain that linked deps need `npm install` ran in them (#4575)
Diffstat (limited to 'docs')
-rw-r--r--docs/content/configuring-npm/package-json.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/content/configuring-npm/package-json.md b/docs/content/configuring-npm/package-json.md
index a6298f0c4..0c2047ad9 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