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
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2013-01-30 11:09:30 +0400
committerisaacs <i@izs.me>2013-01-30 11:09:30 +0400
commitbe19cdb6fe56413ca77f1e366c60e4fa6a1dba27 (patch)
tree8a7bf2a7c8caab969d43afaf645aa8a66d5d76a7
parentb4c58617039c21c10889a9869f8e86a23e17d3a0 (diff)
document bin-links config
-rw-r--r--doc/cli/config.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/cli/config.md b/doc/cli/config.md
index 24bf22b2c..b2057a5da 100644
--- a/doc/cli/config.md
+++ b/doc/cli/config.md
@@ -167,6 +167,18 @@ then the user could change the behavior by doing:
Force npm to always require authentication when accessing the registry,
even for `GET` requests.
+### bin-links
+
+* Default: `true`
+* Type: Boolean
+
+Tells npm to create symlinks (or `.cmd` shims on Windows) for package
+executables.
+
+Set to false to have it not do this. This can be used to work around
+the fact that some file systems don't support symlinks, even on
+ostensibly Unix systems.
+
### browser
* Default: OS X: `"open"`, others: `"google-chrome"`