diff options
author | isaacs <i@izs.me> | 2013-08-16 08:19:31 -0700 |
---|---|---|
committer | isaacs <i@izs.me> | 2013-08-16 08:19:31 -0700 |
commit | 5abdef790c5b9ea5d8424289bf026b3e422ccf7e (patch) | |
tree | 41492416586549b98933414309f8835c59170378 /deps/npm/doc/cli | |
parent | f55aca65154e7df01f4bfd1809f200844673f6d4 (diff) | |
download | node-5abdef790c5b9ea5d8424289bf026b3e422ccf7e.tar.gz |
npm: Upgrade to 1.3.8
Diffstat (limited to 'deps/npm/doc/cli')
-rw-r--r-- | deps/npm/doc/cli/npm-link.md | 2 | ||||
-rw-r--r-- | deps/npm/doc/cli/npm-version.md | 2 | ||||
-rw-r--r-- | deps/npm/doc/cli/repo.md | 26 |
3 files changed, 28 insertions, 2 deletions
diff --git a/deps/npm/doc/cli/npm-link.md b/deps/npm/doc/cli/npm-link.md index cfd7f3a76..f7f5ad053 100644 --- a/deps/npm/doc/cli/npm-link.md +++ b/deps/npm/doc/cli/npm-link.md @@ -16,7 +16,7 @@ symbolic link from `prefix/package-name` to the current folder. Next, in some other location, `npm link package-name` will create a symlink from the local `node_modules` folder to the global symlink. -Note that `package-name` is taken from `package.json` , +Note that `package-name` is taken from `package.json`, not from directory name. When creating tarballs for `npm publish`, the linked packages are diff --git a/deps/npm/doc/cli/npm-version.md b/deps/npm/doc/cli/npm-version.md index 1cacd8d00..18aaf7470 100644 --- a/deps/npm/doc/cli/npm-version.md +++ b/deps/npm/doc/cli/npm-version.md @@ -42,4 +42,4 @@ in your git config for this to work properly. For example: * npm-init(1) * package.json(5) -* npm-semver(7) +* semver(7) diff --git a/deps/npm/doc/cli/repo.md b/deps/npm/doc/cli/repo.md new file mode 100644 index 000000000..5c281c28e --- /dev/null +++ b/deps/npm/doc/cli/repo.md @@ -0,0 +1,26 @@ +npm-repo(1) -- Open package repository page in the browser +======================================================== + +## SYNOPSIS + + npm repo <pkgname> + +## DESCRIPTION + +This command tries to guess at the likely location of a package's +repository URL, and then tries to open it using the `--browser` +config param. + +## CONFIGURATION + +### browser + +* Default: OS X: `"open"`, Windows: `"start"`, Others: `"xdg-open"` +* Type: String + +The browser that is called by the `npm repo` command to open websites. + +## SEE ALSO + +* npm-docs(1) +* npm-config(1) |