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:
Diffstat (limited to 'doc/rebuild.md')
-rw-r--r--doc/rebuild.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/rebuild.md b/doc/rebuild.md
new file mode 100644
index 000000000..c017e7484
--- /dev/null
+++ b/doc/rebuild.md
@@ -0,0 +1,21 @@
+npm-rebuild(1) -- Rebuild a package
+===================================
+
+## SYNOPSIS
+
+ npm rebuild [<name>[@<version>] [name[@<version>] ...]]
+
+* `<name>`:
+ The package to rebuild
+* `<version>`:
+ The version range to rebuild. Any matching installed packages are rebuilt.
+
+## DESCRIPTION
+
+This command runs the `npm build` command on the matched folders. This is useful
+when you install a new version of node, and must recompile all your C++ addons with
+the new binary.
+
+Regardless of the configuration settings, rebuild always sets `update-dependents`
+and `auto-activate` to false, to minimize unexpected side effects. It does not
+change any state outside of the package's folder.