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
path: root/doc
diff options
context:
space:
mode:
authorKenan Yildirim <kenan@kenany.me>2015-10-02 06:02:57 +0300
committerRebecca Turner <me@re-becca.org>2015-10-09 02:24:37 +0300
commit7e6e0079a164968c61867b2ae62e2ee84f9a1961 (patch)
tree30800bd70f360f5acd3ecfea6e75b40aba19cc0d /doc
parent7224bef1cf6d3ffafd694af61fa7eba958b50563 (diff)
doc: correct `bindings.gyp` to `binding.gyp`
`node-gyp` looks for `binding.gyp`. PR-URL: https://github.com/npm/npm/pull/9820
Diffstat (limited to 'doc')
-rw-r--r--doc/misc/npm-scripts.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/misc/npm-scripts.md b/doc/misc/npm-scripts.md
index 12c7f2316..c7f8b20ce 100644
--- a/doc/misc/npm-scripts.md
+++ b/doc/misc/npm-scripts.md
@@ -71,7 +71,7 @@ npm will default some script values based on package contents.
* `"install": "node-gyp rebuild"`:
- If there is a `bindings.gyp` file in the root of your package, npm will
+ If there is a `binding.gyp` file in the root of your package, npm will
default the `install` command to compile using node-gyp.
## USER