summaryrefslogtreecommitdiff
path: root/deps/npm/docs/content/cli-commands/npm-rebuild.md
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/docs/content/cli-commands/npm-rebuild.md')
-rwxr-xr-xdeps/npm/docs/content/cli-commands/npm-rebuild.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/deps/npm/docs/content/cli-commands/npm-rebuild.md b/deps/npm/docs/content/cli-commands/npm-rebuild.md
new file mode 100755
index 0000000000..aed9d4e897
--- /dev/null
+++ b/deps/npm/docs/content/cli-commands/npm-rebuild.md
@@ -0,0 +1,28 @@
+---
+section: cli-commands
+title: npm-rebuild
+description: Rebuild a package
+---
+
+# npm-rebuildd
+
+## Rebuild a package
+
+### Synopsis
+
+```bash
+npm rebuild [[<@scope>/<name>]...]
+
+alias: npm rb
+```
+
+### 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.
+
+### See Also
+
+* [npm build](/cli-commands/npm-build)
+* [npm install](/cli-commands/npm-install)