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>2010-09-22 03:25:47 +0400
committerisaacs <i@izs.me>2010-09-22 03:25:47 +0400
commitdbee5c3b14f10fac8b15e661a8e5ed72d4e147c0 (patch)
treeec68a7ff9638901db2379e9bc20fca56143d5945 /man/cache.1
parentf9071cfbfd5b3316d9f4f18e06e75358bb757703 (diff)
Change the way npm help works, so that it will work with man programs that stubbornly refuse to take a troff file as an argument
That is, make it work on Solaris.
Diffstat (limited to 'man/cache.1')
-rw-r--r--man/cache.170
1 files changed, 0 insertions, 70 deletions
diff --git a/man/cache.1 b/man/cache.1
deleted file mode 100644
index 562fe5b23..000000000
--- a/man/cache.1
+++ /dev/null
@@ -1,70 +0,0 @@
-.\" Generated with Ronnjs/v0.1
-.\" http://github.com/kapouer/ronnjs/
-.
-.TH "NPM\-CACHE" "1" "September 2010" "" ""
-.
-.SH "NAME"
-\fBnpm-cache\fR \-\- install a package
-.
-.SH "SYNOPSIS"
-.
-.nf
-npm cache add <tarball file>
-npm cache add <folder>
-npm cache add <tarball url>
-npm cache add <name> <version>
-npm cache ls [<path>]
-npm cache clean [<pkg> [<version>]]
-.
-.fi
-.
-.SH "DESCRIPTION"
-.
-.IP "\(bu" 4
-add:
-Access the local cache of package data\. This command is primarily
-intended to be used internally by npm, but it can provide a way to
-add data to the local installation cache explicitly\.
-.
-.IP
-If two arguments are provided, then npm will fetch the data from the
-registry\. This allows npm to use the filesystem as a local proxy to
-the registry\.
-.
-.IP "\(bu" 4
-ls:
-Show the data in the cache\. Additional arguments are joined together
-in a path\-like fashion, but something like \fBnpm cache ls npm/0\.1\.5\fR is
-acceptable as well\.
-.
-.IP "\(bu" 4
-clean:
-Delete data out of the cache for a specific package and version, all
-versions of a package, or all data for all packages, depending on the
-arguments supplied\.
-.
-.IP
-This can be used if invalid data gets into the cache\.
-.
-.IP "" 0
-.
-.SH "DETAILS"
-npm stores data for a version of a package in \fB$ROOT/\.npm/\.cache/<name>/<version>\fR\|\. Three pieces of data are stored
-in this folder:
-.
-.IP "\(bu" 4
-package/:
-A folder containing the package contents as they appear in the tarball\.
-.
-.IP "\(bu" 4
-package\.json:
-The package\.json file, as npm sees it, with overlays applied and a _id attribute\.
-.
-.IP "\(bu" 4
-package\.tgz:
-The tarball for that version\.
-.
-.IP "" 0
-.
-.SH "HISTORY"
-Added in npm version 0\.1\.6