deps: upgrade npm to 2.8.3
This commit is contained in:
parent
49bb7ded2c
commit
4870213f9e
3
deps/npm/AUTHORS
vendored
3
deps/npm/AUTHORS
vendored
@ -268,3 +268,6 @@ Takaya Kobayashi <jigsaw@live.jp>
|
|||||||
Ra'Shaun Stovall <rashaunstovall@gmail.com>
|
Ra'Shaun Stovall <rashaunstovall@gmail.com>
|
||||||
Julien Meddah <julien.meddah@deveryware.com>
|
Julien Meddah <julien.meddah@deveryware.com>
|
||||||
Michiel Sikma <michiel@wedemandhtml.com>
|
Michiel Sikma <michiel@wedemandhtml.com>
|
||||||
|
Jakob Krigovsky <jakob.krigovsky@gmail.com>
|
||||||
|
Charmander <~@charmander.me>
|
||||||
|
erik wienhold <git@ewie.name>
|
||||||
|
323
deps/npm/CHANGELOG.md
vendored
323
deps/npm/CHANGELOG.md
vendored
@ -1,3 +1,326 @@
|
|||||||
|
### v2.8.3 (2015-04-15):
|
||||||
|
|
||||||
|
#### TWO SMALL GIT TWEAKS
|
||||||
|
|
||||||
|
This is the last of a set of releases intended to ensure npm's git support is
|
||||||
|
robust enough that we can stop working on it for a while. These fixes are
|
||||||
|
small, but prevent a common crasher and clear up one of the more confusing
|
||||||
|
error messages coming out of npm when working with repositories hosted on git.
|
||||||
|
|
||||||
|
* [`387f889`](https://github.com/npm/npm/commit/387f889c0e8fb617d9cc9a42ed0a3ec49424ab5d)
|
||||||
|
[#7961](https://github.com/npm/npm/issues/7961) Ensure that hosted git SSH
|
||||||
|
URLs always have a valid protocol when stored in `resolved` fields in
|
||||||
|
`npm-shrinkwrap.json`. ([@othiym23](https://github.com/othiym23))
|
||||||
|
* [`394c2f5`](https://github.com/npm/npm/commit/394c2f5a1227232c0baf42fbba1402aafe0d6ffb)
|
||||||
|
Switch the order in which hosted Git providers are checked to `git:`,
|
||||||
|
`git+https:`, then `git+ssh:` (from `git:`, `git+ssh:`, then `git+https:`) in
|
||||||
|
an effort to go from most to least likely to succeed, to make for less
|
||||||
|
confusing error message. ([@othiym23](https://github.com/othiym23))
|
||||||
|
|
||||||
|
### v2.8.2 (2015-04-14):
|
||||||
|
|
||||||
|
#### PEACE IN OUR TIME
|
||||||
|
|
||||||
|
npm has been having an issue with CouchDB's web server since the release
|
||||||
|
of io.js and Node.js 0.12.0 that has consumed a huge amount of my time
|
||||||
|
to little visible effect. Sam Mikes picked up the thread from me, and
|
||||||
|
after a [_lot_ of effort](https://github.com/npm/npm/issues/7699#issuecomment-93091111)
|
||||||
|
figured out that ultimately there are probably a couple problems with
|
||||||
|
the new HTTP Agent keep-alive handling in new versions of Node. In
|
||||||
|
addition, `npm-registry-client` was gratuitously sending a body along
|
||||||
|
with a GET request which was triggering the bugs. Sam removed about 10 bytes from
|
||||||
|
one file in `npm-registry-client`, and this problem, which has been bugging us for months,
|
||||||
|
completely went away.
|
||||||
|
|
||||||
|
In conclusion, Sam Mikes is great, and anybody using a private registry
|
||||||
|
hosted on CouchDB should thank him for his hard work. Also, thanks to
|
||||||
|
the community at large for pitching in on this bug, which has been
|
||||||
|
around for months now.
|
||||||
|
|
||||||
|
* [`431c3bf`](https://github.com/npm/npm/commit/431c3bf6cdec50f9f0c735f478cb2f3f337d3313)
|
||||||
|
[#7699](https://github.com/npm/npm/issues/7699) `npm-registry-client@6.3.2`:
|
||||||
|
Don't send body with HTTP GET requests when logging in.
|
||||||
|
([@smikes](https://github.com/smikes))
|
||||||
|
|
||||||
|
### v2.8.1 (2015-04-12):
|
||||||
|
|
||||||
|
#### CORRECTION: NPM'S GIT INTEGRATION IS DOING OKAY
|
||||||
|
|
||||||
|
A [helpful bug report](https://github.com/npm/npm/issues/7872#issuecomment-91809553)
|
||||||
|
led to another round of changes to
|
||||||
|
[`hosted-git-info`](https://github.com/npm/hosted-git-info/commit/827163c74531b69985d1ede7abced4861e7b0cd4),
|
||||||
|
some additional test-writing, and a bunch of hands-on testing against actual
|
||||||
|
private repositories. While the complexity of npm's git dependency handling is
|
||||||
|
nearly fractal (because npm is very complex, and git is even more complex),
|
||||||
|
it's feeling way more solid than it has for a while. We think this is a
|
||||||
|
substantial improvement over what we had before, so give `npm@2.8.1` a shot if
|
||||||
|
you have particularly complex git use cases and
|
||||||
|
[let us know](https://github.com/npm/npm/issues/new) how it goes.
|
||||||
|
|
||||||
|
(NOTE: These changes mostly affect cloning and saving references to packages
|
||||||
|
hosted in git repositories, and don't address some known issues with things
|
||||||
|
like lifecycle scripts not being run on npm dependencies. Work continues on
|
||||||
|
other issues that affect parity between git and npm registry packages.)
|
||||||
|
|
||||||
|
* [`66377c6`](https://github.com/npm/npm/commit/66377c6ece2cf4d53d9a618b7d9824e1452bc293)
|
||||||
|
[#7872](https://github.com/npm/npm/issues/7872) `hosted-git-info@2.1.2`: Pass
|
||||||
|
through credentials embedded in SSH and HTTPs git URLs.
|
||||||
|
([@othiym23](https://github.com/othiym23))
|
||||||
|
* [`15efe12`](https://github.com/npm/npm/commit/15efe124753257728a0ddc64074fa5a4b9c2eb30)
|
||||||
|
[#7872](https://github.com/npm/npm/issues/7872) Use the new version of
|
||||||
|
`hosted-git-info` to pass along credentials embedded in git URLs. Test it.
|
||||||
|
Test it a lot. ([@othiym23](https://github.com/othiym23))
|
||||||
|
|
||||||
|
#### SCOPED DEPENDENCIES AND PEER DEPENDENCIES: NOT QUITE REESE'S
|
||||||
|
|
||||||
|
Big thanks to [@ewie](https://github.com/ewie) for identifying an issue with
|
||||||
|
how npm was handling `peerDependencies` that were implicitly installed from the
|
||||||
|
`package.json` files of scoped dependencies. This
|
||||||
|
[will be a moot point](https://github.com/npm/npm/issues/6565#issuecomment-74971689)
|
||||||
|
with the release of `npm@3`, but until then, it's important that
|
||||||
|
`peerDependency` auto-installation work as expected.
|
||||||
|
|
||||||
|
* [`b027319`](https://github.com/npm/npm/commit/b0273190c71eba14395ddfdd1d9f7ba625297523)
|
||||||
|
[#7920](https://github.com/npm/npm/issues/7920) Scoped packages with
|
||||||
|
`peerDependencies` were installing the `peerDependencies` into the wrong
|
||||||
|
directory. ([@ewie](https://github.com/ewie))
|
||||||
|
* [`649e31a`](https://github.com/npm/npm/commit/649e31ae4fd02568bae5dc6b4ea783431ce3d63e)
|
||||||
|
[#7920](https://github.com/npm/npm/issues/7920) Test `peerDependency`
|
||||||
|
installs involving scoped packages using `npm-package-arg` instead of simple
|
||||||
|
path tests, for consistency. ([@othiym23](https://github.com/othiym23))
|
||||||
|
|
||||||
|
#### MAKING IT EASIER TO WRITE NPM TESTS, VERSION 0.0.1
|
||||||
|
|
||||||
|
[@iarna](https://github.com/iarna) and I
|
||||||
|
([@othiym23](https://github.com/othiym23)) have been discussing a
|
||||||
|
[candidate plan](https://github.com/npm/npm/wiki/rewriting-npm's-tests:-a-plan-maybe)
|
||||||
|
for improving npm's test suite, with the goal of making it easier for new
|
||||||
|
contributors to get involved with npm by reducing the learning curve
|
||||||
|
necessary to be able to write good tests for proposed changes. This is the
|
||||||
|
first substantial piece of that effort. Here's what the commit message for
|
||||||
|
[`ed7e249`](https://github.com/npm/npm/commit/ed7e249d50444312cd266942ce3b89e1ca049bdf)
|
||||||
|
had to say about this work:
|
||||||
|
|
||||||
|
> It's too difficult for npm contributors to figure out what the conventional
|
||||||
|
> style is for tests. Part of the problem is that the documentation in
|
||||||
|
> CONTRIBUTING.md is inadequate, but another important factor is that the tests
|
||||||
|
> themselves are written in a variety of styles. One of the most notable
|
||||||
|
> examples of this is the fact that many tests use fixture directories to store
|
||||||
|
> precooked test scenarios and package.json files.
|
||||||
|
>
|
||||||
|
> This had some negative consequences:
|
||||||
|
>
|
||||||
|
> * tests weren't idempotent
|
||||||
|
> * subtle dependencies between tests existed
|
||||||
|
> * new tests get written in this deprecated style because it's not
|
||||||
|
> obvious that the style is out of favor
|
||||||
|
> * it's hard to figure out why a lot of those directories existed,
|
||||||
|
> because they served a variety of purposes, so it was difficult to
|
||||||
|
> tell when it was safe to remove them
|
||||||
|
>
|
||||||
|
> All in all, the fixture directories were a major source of technical debt, and
|
||||||
|
> cleaning them up, while time-consuming, makes the whole test suite much more
|
||||||
|
> approachable, and makes it more likely that new tests written by outside
|
||||||
|
> contributors will follow a conventional style. To support that, all of the
|
||||||
|
> tests touched by this changed were cleaned up to pass the `standard` style
|
||||||
|
> checker.
|
||||||
|
|
||||||
|
And here's a little extra context from a comment I left on [#7929](https://github.com/npm/npm/issues/7929):
|
||||||
|
|
||||||
|
> One of the other things that encouraged me was looking at this
|
||||||
|
> [presentation on technical debt](http://www.slideshare.net/nnja/pycon-2015-technical-debt-the-monster-in-your-closet)
|
||||||
|
> from Pycon 2015, especially slide 53, which I interpreted in terms of
|
||||||
|
> difficulty getting new contributors to submit patches to an OSS project like
|
||||||
|
> npm. npm has a long ways to go, but I feel good about this change.
|
||||||
|
|
||||||
|
* [`ed7e249`](https://github.com/npm/npm/commit/ed7e249d50444312cd266942ce3b89e1ca049bdf)
|
||||||
|
[#7929](https://github.com/npm/npm/issues/7929) Eliminate fixture directories
|
||||||
|
from `test/tap`, leaving each test self-contained.
|
||||||
|
([@othiym23](https://github.com/othiym23))
|
||||||
|
* [`4928d30`](https://github.com/npm/npm/commit/4928d30140821c63e03fffed73f8d88ebdc43710)
|
||||||
|
[#7929](https://github.com/npm/npm/issues/7929) Move fixture files from
|
||||||
|
`test/tap/*` to `test/fixtures`. ([@othiym23](https://github.com/othiym23))
|
||||||
|
* [`e925deb`](https://github.com/npm/npm/commit/e925debca91092a814c1a00933babc3a8cf975be)
|
||||||
|
[#7929](https://github.com/npm/npm/issues/7929) Tweak the run scripts to stop
|
||||||
|
slaughtering the CPU on doc rebuild.
|
||||||
|
([@othiym23](https://github.com/othiym23))
|
||||||
|
* [`65bf7cf`](https://github.com/npm/npm/commit/65bf7cffaf91c426b676c47529eee796f8b8b75c)
|
||||||
|
[#7923](https://github.com/npm/npm/issues/7923) Use an alias of scripts and
|
||||||
|
run-scripts in `npm run test-all` ([@watilde](https://github.com/watilde))
|
||||||
|
* [`756a3fb`](https://github.com/npm/npm/commit/756a3fbb852a2469afe706635ed88d22c37743e5)
|
||||||
|
[#7923](https://github.com/npm/npm/issues/7923) Sync timeout time of `npm
|
||||||
|
run-script test-all` to be the same as `test` and `tap` scripts.
|
||||||
|
([@watilde](https://github.com/watilde))
|
||||||
|
* [`8299b5f`](https://github.com/npm/npm/commit/8299b5fb6373354a7fbaab6f333863758812ae90)
|
||||||
|
Set a timeout for tap tests for `npm run-script test-all`.
|
||||||
|
([@othiym23](https://github.com/othiym23))
|
||||||
|
|
||||||
|
#### THE EVER-BEATING DRUM OF DEPENDENCY UPDATES
|
||||||
|
|
||||||
|
* [`d90d0b9`](https://github.com/npm/npm/commit/d90d0b992acbf62fd5d68debf9d1dbd6cfa20804)
|
||||||
|
[#7924](https://github.com/npm/npm/issues/7924) Remove `child-process-close`,
|
||||||
|
as it was included for Node 0.6 compatibility, and npm no longer supports
|
||||||
|
0.6. ([@robertkowalski](https://github.com/robertkowalski))
|
||||||
|
* [`16427c1`](https://github.com/npm/npm/commit/16427c1f3ea3d71ee753c62eb4c2663c7b32b84f)
|
||||||
|
`lru-cache@2.5.2`: More accurate updating of expiry times when `maxAge` is
|
||||||
|
set. ([@isaacs](https://github.com/isaacs))
|
||||||
|
* [`03cce83`](https://github.com/npm/npm/commit/03cce83b64344a9e0fe036dce214f4d68cfcc9e7)
|
||||||
|
`nock@1.6.0`: Mocked network error handling.
|
||||||
|
([@pgte](https://github.com/pgte))
|
||||||
|
* [`f93b1f0`](https://github.com/npm/npm/commit/f93b1f0b7eb5d1b8a7967e837bbd756db1091d00)
|
||||||
|
`glob@5.0.5`: Use `path-is-absolute` polyfill, allowing newer Node.js and
|
||||||
|
io.js versions to use `path.isAbsolute()`.
|
||||||
|
([@sindresorhus](https://github.com/sindresorhus))
|
||||||
|
* [`a70d694`](https://github.com/npm/npm/commit/a70d69495a6e96997e64855d9e749d943ee6d64f)
|
||||||
|
`request@2.55.0`: Bug fixes and simplification.
|
||||||
|
([@simov](https://github.com/simov))
|
||||||
|
* [`2aecc6f`](https://github.com/npm/npm/commit/2aecc6f4083526feeb14615b4e5484edc66175b5)
|
||||||
|
`columnify@1.5.1`: Switch to using babel from 6to5.
|
||||||
|
([@timoxley](https://github.com/timoxley))
|
||||||
|
|
||||||
|
### v2.8.0 (2015-04-09):
|
||||||
|
|
||||||
|
#### WE WILL NEVER BE DONE FIXING NPM'S GIT SUPPORT
|
||||||
|
|
||||||
|
If you look at [the last release's release
|
||||||
|
notes](https://github.com/npm/npm/blob/master/CHANGELOG.md#git-mean-git-tuff-git-all-the-way-away-from-my-stuff),
|
||||||
|
you will note that they confidently assert that it's perfectly OK to force all
|
||||||
|
GitHub URLs through the same `git:` -> `git+ssh:` fallback flow for cloning. It
|
||||||
|
turns out that many users depend on `git+https:` URLs in their build
|
||||||
|
environments because they use GitHub auth tokens instead of SSH keys. Also, in
|
||||||
|
some cases you just want to be able to explicitly say how a given dependency
|
||||||
|
should be cloned from GitHub.
|
||||||
|
|
||||||
|
Because of the way we resolved the inconsistency in GitHub shorthand handling
|
||||||
|
[before](https://github.com/npm/npm/blob/master/CHANGELOG.md#bug-fixes-1), this
|
||||||
|
turned out to be difficult to work around. So instead of hacking around it, we
|
||||||
|
completely redid how git is handled within npm and its attendant packages.
|
||||||
|
Again. This time, we changed things so that `normalize-package-data` and
|
||||||
|
`read-package-json` leave more of the git logic to npm itself, which makes
|
||||||
|
handling shorthand syntax consistently much easier, and also allows users to
|
||||||
|
resume using explicit, fully-qualified git URLs without npm messing with them.
|
||||||
|
|
||||||
|
Here's a summary of what's changed:
|
||||||
|
|
||||||
|
* Instead of converting the GitHub shorthand syntax to a `git+ssh:`, `git:`, or
|
||||||
|
`git+https:` URL and saving that, save the shorthand itself to
|
||||||
|
`package.json`.
|
||||||
|
* If presented with shortcuts, try cloning via the git protocol, SSH, and HTTPS
|
||||||
|
(in that order).
|
||||||
|
* No longer prompt for credentials -- it didn't work right with the spinner,
|
||||||
|
and wasn't guaranteed to work anyway. We may experiment with doing this a
|
||||||
|
better way in the future. Users can override this by setting `GIT_ASKPASS` in
|
||||||
|
their environment if they want to experiment with interactive cloning, but
|
||||||
|
should also set `--no-spin` on the npm command line (or run `npm config set
|
||||||
|
spin=false`).
|
||||||
|
* **EXPERIMENTAL FEATURE**: Add support for `github:`, `gist:`, `bitbucket:`,
|
||||||
|
and `gitlab:` shorthand prefixes. GitHub shortcuts will continue to be
|
||||||
|
normalized to `org/repo` instead of being saved as `github:org/repo`, but
|
||||||
|
`gitlab:`, `gist:`, and `bitbucket:` prefixes will be used on the command
|
||||||
|
line and from `package.json`. BE CAREFUL WITH THIS. `package.json` files
|
||||||
|
published with the new shorthand syntax can _only_ be read by `npm@2.8.0` and
|
||||||
|
later, and this feature is mostly meant for playing around with it. If you
|
||||||
|
want to save git dependencies in a form that older versions of npm can read,
|
||||||
|
use `--save-exact`, which will save the git URL and resolved commit hash of
|
||||||
|
the head of the branch in a manner similar to the way that `--save-exact`
|
||||||
|
pins versions for registry dependencies. This is documented (so check `npm
|
||||||
|
help install` for details), but we're not going to make a lot of noise about
|
||||||
|
it until it has a chance to bake in a little more.
|
||||||
|
|
||||||
|
It is [@othiym23](https://github.com/othiym23)'s sincere hope that this will
|
||||||
|
resolve all of the inconsistencies users were seeing with GitHub and git-hosted
|
||||||
|
packages, but given the level of change here, that may just be a fond wish.
|
||||||
|
Extra testing of this change is requested.
|
||||||
|
|
||||||
|
* [`6b0f588`](https://github.com/npm/npm/commit/6b0f58877f37df9904490ffbaaad33862bd36dce)
|
||||||
|
[#7867](https://github.com/npm/npm/issues/7867) Use git shorthand and git
|
||||||
|
URLs as presented by user. Support new `hosted-git-info` shortcut syntax.
|
||||||
|
Save shorthand in `package.json`. Try cloning via `git:`, `git+ssh:`, and
|
||||||
|
`git+https:`, in that order, when supported by the underlying hosting
|
||||||
|
provider. ([@othiym23](https://github.com/othiym23))
|
||||||
|
* [`75d4267`](https://github.com/npm/npm/commit/75d426787869d54ca7400408f562f971b34649ef)
|
||||||
|
[#7867](https://github.com/npm/npm/issues/7867) Document new GitHub, GitHub
|
||||||
|
gist, Bitbucket, and GitLab shorthand syntax.
|
||||||
|
([@othiym23](https://github.com/othiym23))
|
||||||
|
* [`7d92c75`](https://github.com/npm/npm/commit/7d92c7592998d90ec883fa989ca74f04ec1b93de)
|
||||||
|
[#7867](https://github.com/npm/npm/issues/7867) When `--save-exact` is used
|
||||||
|
with git shorthand or URLs, save the fully-resolved URL, with branch name
|
||||||
|
resolved to the exact hash for the commit checked out.
|
||||||
|
([@othiym23](https://github.com/othiym23))
|
||||||
|
* [`9220e59`](https://github.com/npm/npm/commit/9220e59f8def8c82c6d331a39ba29ad4c44e3a9b)
|
||||||
|
[#7867](https://github.com/npm/npm/issues/7867) Ensure that non-prefixed and
|
||||||
|
non-normalized GitHub shortcuts are saved to `package.json`.
|
||||||
|
([@othiym23](https://github.com/othiym23))
|
||||||
|
* [`dd398e9`](https://github.com/npm/npm/commit/dd398e98a8eba27eeba84378200da3d078fdf980)
|
||||||
|
[#7867](https://github.com/npm/npm/issues/7867) `hosted-git-info@2.1.1`:
|
||||||
|
Ensure that `gist:` shorthand survives being round-tripped through
|
||||||
|
`package.json`. ([@othiym23](https://github.com/othiym23))
|
||||||
|
* [`33d1420`](https://github.com/npm/npm/commit/33d1420bf2f629332fceb2ac7e174e63ac48f96a)
|
||||||
|
[#7867](https://github.com/npm/npm/issues/7867) `hosted-git-info@2.1.0`: Add
|
||||||
|
support for auth embedded directly in git URLs.
|
||||||
|
([@othiym23](https://github.com/othiym23))
|
||||||
|
* [`23a1d5a`](https://github.com/npm/npm/commit/23a1d5a540e8db27f5cd0245de7c3694e2bddad1)
|
||||||
|
[#7867](https://github.com/npm/npm/issues/7867) `hosted-git-info@2.0.2`: Make
|
||||||
|
it possible to determine in which form a hosted git URL was passed.
|
||||||
|
([@iarna](https://github.com/iarna))
|
||||||
|
* [`eaf75ac`](https://github.com/npm/npm/commit/eaf75acb718611ad5cfb360084ec86938d9c66c5)
|
||||||
|
[#7867](https://github.com/npm/npm/issues/7867)
|
||||||
|
`normalize-package-data@2.0.0`: Normalize GitHub specifiers so they pass
|
||||||
|
through shortcut syntax and preserve explicit URLs.
|
||||||
|
([@iarna](https://github.com/iarna))
|
||||||
|
* [`95e0535`](https://github.com/npm/npm/commit/95e0535e365e0aca49c634dd2061a0369b0475f1)
|
||||||
|
[#7867](https://github.com/npm/npm/issues/7867) `npm-package-arg@4.0.0`: Add
|
||||||
|
git URL and shortcut to hosted git spec and use `hosted-git-info@2.0.2`.
|
||||||
|
([@iarna](https://github.com/iarna))
|
||||||
|
* [`a808926`](https://github.com/npm/npm/commit/a8089268d5f3d57f42dbaba02ff6437da5121191)
|
||||||
|
[#7867](https://github.com/npm/npm/issues/7867)
|
||||||
|
`realize-package-specifier@3.0.0`: Use `npm-package-arg@4.0.0` and test
|
||||||
|
shortcut specifier behavior. ([@iarna](https://github.com/iarna))
|
||||||
|
* [`6dd1e03`](https://github.com/npm/npm/commit/6dd1e039bddf8cf5383343f91d84bc5d78acd083)
|
||||||
|
[#7867](https://github.com/npm/npm/issues/7867) `init-package-json@1.4.0`:
|
||||||
|
Allow dependency on `read-package-json@2.0.0`.
|
||||||
|
([@iarna](https://github.com/iarna))
|
||||||
|
* [`63254bb`](https://github.com/npm/npm/commit/63254bb6358f66752aca6aa1a275271b3ae03f7c)
|
||||||
|
[#7867](https://github.com/npm/npm/issues/7867) `read-installed@4.0.0`: Use
|
||||||
|
`read-package-json@2.0.0`. ([@iarna](https://github.com/iarna))
|
||||||
|
* [`254b887`](https://github.com/npm/npm/commit/254b8871f5a173bb464cc5b0ace460c7878b8097)
|
||||||
|
[#7867](https://github.com/npm/npm/issues/7867) `read-package-json@2.0.0`:
|
||||||
|
Use `normalize-package-data@2.0.0`. ([@iarna](https://github.com/iarna))
|
||||||
|
* [`0b9f8be`](https://github.com/npm/npm/commit/0b9f8be62fe5252abe54d49e36a696f4816c2eca)
|
||||||
|
[#7867](https://github.com/npm/npm/issues/7867) `npm-registry-client@6.3.0`:
|
||||||
|
Mark compatibility with `normalize-package-data@2.0.0` and
|
||||||
|
`npm-package-arg@4.0.0`. ([@iarna](https://github.com/iarna))
|
||||||
|
* [`f40ecaa`](https://github.com/npm/npm/commit/f40ecaad68f77abc50eb6f5b224e31dec3d250fc)
|
||||||
|
[#7867](https://github.com/npm/npm/issues/7867) Extract a common method to
|
||||||
|
use when cloning git repos for testing.
|
||||||
|
([@othiym23](https://github.com/othiym23))
|
||||||
|
|
||||||
|
#### TEST FIXES FOR NODE 0.8
|
||||||
|
|
||||||
|
npm continues to [get closer](https://github.com/npm/npm/issues/7842) to being
|
||||||
|
completely green on Travis for Node 0.8.
|
||||||
|
|
||||||
|
* [`26d36e9`](https://github.com/npm/npm/commit/26d36e9cf0eca69fe1863d2ea536c28555b9e8de)
|
||||||
|
[#7842](https://github.com/npm/npm/issues/7842) When spawning child
|
||||||
|
processes, map exit code 127 to ENOENT so Node 0.8 handles child process
|
||||||
|
failures the same as later versions.
|
||||||
|
([@SonicHedgehog](https://github.com/SonicHedgehog))
|
||||||
|
* [`54cd895`](https://github.com/npm/npm/commit/54cd8956ea783f96749e46597d8c2cb9397c5d5f)
|
||||||
|
[#7842](https://github.com/npm/npm/issues/7842) Node 0.8 requires -e with -p
|
||||||
|
when evaluating snippets; fix test.
|
||||||
|
([@SonicHedgehog](https://github.com/SonicHedgehog))
|
||||||
|
|
||||||
|
#### SMALL FIX AND DOC TWEAK
|
||||||
|
|
||||||
|
* [`20e9003`](https://github.com/npm/npm/commit/20e90031b847e9f7c7168f3dad8b1e526f9a2586)
|
||||||
|
`tar@2.0.1`: Fix regression where relative symbolic links within an
|
||||||
|
extraction root that pointed within an extraction root would get normalized
|
||||||
|
to absolute symbolic links. ([@isaacs](https://github.com/isaacs))
|
||||||
|
* [`2ef8898`](https://github.com/npm/npm/commit/2ef88989c41bee1578570bb2172c90ede129dbd1)
|
||||||
|
[#7879](https://github.com/npm/npm/issues/7879) Better document that `npm
|
||||||
|
publish --tag=foo` will not set `latest` to that version.
|
||||||
|
([@linclark](https://github.com/linclark))
|
||||||
|
|
||||||
### v2.7.6 (2015-04-02):
|
### v2.7.6 (2015-04-02):
|
||||||
|
|
||||||
#### GIT MEAN, GIT TUFF, GIT ALL THE WAY AWAY FROM MY STUFF
|
#### GIT MEAN, GIT TUFF, GIT ALL THE WAY AWAY FROM MY STUFF
|
||||||
|
3
deps/npm/doc/cli/npm-dist-tag.md
vendored
3
deps/npm/doc/cli/npm-dist-tag.md
vendored
@ -33,7 +33,8 @@ When installing dependencies, a preferred tagged version may be specified:
|
|||||||
|
|
||||||
This also applies to `npm dedupe`.
|
This also applies to `npm dedupe`.
|
||||||
|
|
||||||
Publishing a package always sets the "latest" tag to the published version.
|
Publishing a package sets the "latest" tag to the published version unless the
|
||||||
|
`--tag` option is used. For example, `npm publish --tag=beta`.
|
||||||
|
|
||||||
## PURPOSE
|
## PURPOSE
|
||||||
|
|
||||||
|
42
deps/npm/doc/cli/npm-install.md
vendored
42
deps/npm/doc/cli/npm-install.md
vendored
@ -164,15 +164,51 @@ after packing it up into a tarball (b).
|
|||||||
|
|
||||||
npm install mygithubuser/myproject
|
npm install mygithubuser/myproject
|
||||||
|
|
||||||
To reference a package in a git repo that is not on GitHub, see git
|
To reference a package in a generic git repo (not on GitHub), see git remote
|
||||||
remote urls below.
|
urls below.
|
||||||
|
|
||||||
|
* `npm install github:<githubname>/<githubrepo>`:
|
||||||
|
|
||||||
|
The same as the above, but explicitly marked as a GitHub dependency.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
npm install github:npm/npm
|
||||||
|
|
||||||
|
* `npm install gist:[<githubname>/]<gistID>`:
|
||||||
|
|
||||||
|
Install the package at `https://gist.github.com/gistID` by attempting to
|
||||||
|
clone it using `git`. The GitHub username associated with the gist is
|
||||||
|
optional and will not be saved in `package.json` if `--save` is used.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
npm install gist:101a11beef
|
||||||
|
|
||||||
|
* `npm install bitbucket:<bitbucketname>/<bitbucketrepo>`:
|
||||||
|
|
||||||
|
Install the package at `https://bitbucket.org/bitbucketname/bitbucketrepo`
|
||||||
|
by attempting to clone it using `git`.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
npm install bitbucket:mybitbucketuser/myproject
|
||||||
|
|
||||||
|
* `npm install gitlab:<gitlabname>/<gitlabrepo>`:
|
||||||
|
|
||||||
|
Install the package at `https://gitlab.com/gitlabname/gitlabrepo`
|
||||||
|
by attempting to clone it using `git`.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
npm install gitlab:mygitlabuser/myproject
|
||||||
|
|
||||||
* `npm install <git remote url>`:
|
* `npm install <git remote url>`:
|
||||||
|
|
||||||
Install a package by cloning a git remote url. The format of the git
|
Install a package by cloning a git remote url. The format of the git
|
||||||
url is:
|
url is:
|
||||||
|
|
||||||
<protocol>://[<user>@]<hostname><separator><path>[#<commit-ish>]
|
<protocol>://[<user>[:<password>]@]<hostname><separator><path>[#<commit-ish>]
|
||||||
|
|
||||||
`<protocol>` is one of `git`, `git+ssh`, `git+http`, or
|
`<protocol>` is one of `git`, `git+ssh`, `git+http`, or
|
||||||
`git+https`. If no `<commit-ish>` is specified, then `master` is
|
`git+https`. If no `<commit-ish>` is specified, then `master` is
|
||||||
|
10
deps/npm/doc/files/package.json.md
vendored
10
deps/npm/doc/files/package.json.md
vendored
@ -272,11 +272,17 @@ The URL should be a publicly available (perhaps read-only) url that can be hande
|
|||||||
directly to a VCS program without any modification. It should not be a url to an
|
directly to a VCS program without any modification. It should not be a url to an
|
||||||
html project page that you put in your browser. It's for computers.
|
html project page that you put in your browser. It's for computers.
|
||||||
|
|
||||||
For GitHub repositories you can use the same shortcut syntax you use for `npm
|
For GitHub, GitHub gist, Bitbucket, or GitLab repositories you can use the same
|
||||||
install`:
|
shortcut syntax you use for `npm install`:
|
||||||
|
|
||||||
"repository": "npm/npm"
|
"repository": "npm/npm"
|
||||||
|
|
||||||
|
"repository": "gist:11081aaa281"
|
||||||
|
|
||||||
|
"repository": "bitbucket:example/repo"
|
||||||
|
|
||||||
|
"repository": "gitlab:another/repo"
|
||||||
|
|
||||||
## scripts
|
## scripts
|
||||||
|
|
||||||
The "scripts" property is a dictionary containing script commands that are run
|
The "scripts" property is a dictionary containing script commands that are run
|
||||||
|
4
deps/npm/html/doc/README.html
vendored
4
deps/npm/html/doc/README.html
vendored
@ -126,7 +126,7 @@ specific purpose, or lack of malice in any given npm package.</p>
|
|||||||
<p>If you have a complaint about a package in the public npm registry,
|
<p>If you have a complaint about a package in the public npm registry,
|
||||||
and cannot <a href="https://docs.npmjs.com/misc/disputes">resolve it with the package
|
and cannot <a href="https://docs.npmjs.com/misc/disputes">resolve it with the package
|
||||||
owner</a>, please email
|
owner</a>, please email
|
||||||
<a href="mailto:support@npmjs.com">support@npmjs.com</a> and explain the situation.</p>
|
<a href="mailto:support@npmjs.com">support@npmjs.com</a> and explain the situation.</p>
|
||||||
<p>Any data published to The npm Registry (including user account
|
<p>Any data published to The npm Registry (including user account
|
||||||
information) may be removed or modified at the sole discretion of the
|
information) may be removed or modified at the sole discretion of the
|
||||||
npm server administrators.</p>
|
npm server administrators.</p>
|
||||||
@ -169,5 +169,5 @@ will no doubt tell you to put the output in a gist or email.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer"><a href="../doc/README.html">README</a> — npm@2.7.6</p>
|
<p id="footer"><a href="../doc/README.html">README</a> — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-bin.html
vendored
2
deps/npm/html/doc/api/npm-bin.html
vendored
@ -28,5 +28,5 @@ to the <code>npm.bin</code> property.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-bin — npm@2.7.6</p>
|
<p id="footer">npm-bin — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-bugs.html
vendored
2
deps/npm/html/doc/api/npm-bugs.html
vendored
@ -33,5 +33,5 @@ friendly for programmatic use.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-bugs — npm@2.7.6</p>
|
<p id="footer">npm-bugs — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-cache.html
vendored
2
deps/npm/html/doc/api/npm-cache.html
vendored
@ -42,5 +42,5 @@ incrementation.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-cache — npm@2.7.6</p>
|
<p id="footer">npm-cache — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-commands.html
vendored
2
deps/npm/html/doc/api/npm-commands.html
vendored
@ -36,5 +36,5 @@ usage, or <code>man 3 npm-<command></code> for programmatic usage.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-commands — npm@2.7.6</p>
|
<p id="footer">npm-commands — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-config.html
vendored
2
deps/npm/html/doc/api/npm-config.html
vendored
@ -57,5 +57,5 @@ functions instead.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-config — npm@2.7.6</p>
|
<p id="footer">npm-config — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-deprecate.html
vendored
2
deps/npm/html/doc/api/npm-deprecate.html
vendored
@ -47,5 +47,5 @@ a deprecation warning to all who attempt to install it.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-deprecate — npm@2.7.6</p>
|
<p id="footer">npm-deprecate — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-docs.html
vendored
2
deps/npm/html/doc/api/npm-docs.html
vendored
@ -33,5 +33,5 @@ friendly for programmatic use.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-docs — npm@2.7.6</p>
|
<p id="footer">npm-docs — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-edit.html
vendored
2
deps/npm/html/doc/api/npm-edit.html
vendored
@ -36,5 +36,5 @@ and how this is used.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-edit — npm@2.7.6</p>
|
<p id="footer">npm-edit — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-explore.html
vendored
2
deps/npm/html/doc/api/npm-explore.html
vendored
@ -31,5 +31,5 @@ sure to use <code>npm rebuild <pkg></code> if you make any changes.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-explore — npm@2.7.6</p>
|
<p id="footer">npm-explore — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-help-search.html
vendored
2
deps/npm/html/doc/api/npm-help-search.html
vendored
@ -44,5 +44,5 @@ Name of the file that matched</li>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-help-search — npm@2.7.6</p>
|
<p id="footer">npm-help-search — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-init.html
vendored
2
deps/npm/html/doc/api/npm-init.html
vendored
@ -39,5 +39,5 @@ then go ahead and use this programmatically.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-init — npm@2.7.6</p>
|
<p id="footer">npm-init — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-install.html
vendored
2
deps/npm/html/doc/api/npm-install.html
vendored
@ -32,5 +32,5 @@ installed or when an error has been encountered.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-install — npm@2.7.6</p>
|
<p id="footer">npm-install — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-link.html
vendored
2
deps/npm/html/doc/api/npm-link.html
vendored
@ -42,5 +42,5 @@ the package in the current working directory</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-link — npm@2.7.6</p>
|
<p id="footer">npm-link — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-load.html
vendored
2
deps/npm/html/doc/api/npm-load.html
vendored
@ -37,5 +37,5 @@ config object.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-load — npm@2.7.6</p>
|
<p id="footer">npm-load — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-ls.html
vendored
2
deps/npm/html/doc/api/npm-ls.html
vendored
@ -63,5 +63,5 @@ dependency will only be output once.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-ls — npm@2.7.6</p>
|
<p id="footer">npm-ls — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-outdated.html
vendored
2
deps/npm/html/doc/api/npm-outdated.html
vendored
@ -28,5 +28,5 @@ currently outdated.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-outdated — npm@2.7.6</p>
|
<p id="footer">npm-outdated — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-owner.html
vendored
2
deps/npm/html/doc/api/npm-owner.html
vendored
@ -47,5 +47,5 @@ that is not implemented at this time.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-owner — npm@2.7.6</p>
|
<p id="footer">npm-owner — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-pack.html
vendored
2
deps/npm/html/doc/api/npm-pack.html
vendored
@ -33,5 +33,5 @@ overwritten the second time.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-pack — npm@2.7.6</p>
|
<p id="footer">npm-pack — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-prefix.html
vendored
2
deps/npm/html/doc/api/npm-prefix.html
vendored
@ -29,5 +29,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-prefix — npm@2.7.6</p>
|
<p id="footer">npm-prefix — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-prune.html
vendored
2
deps/npm/html/doc/api/npm-prune.html
vendored
@ -30,5 +30,5 @@ package's dependencies list.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-prune — npm@2.7.6</p>
|
<p id="footer">npm-prune — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-publish.html
vendored
2
deps/npm/html/doc/api/npm-publish.html
vendored
@ -46,5 +46,5 @@ the registry. Overwrites when the "force" environment variable is set
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-publish — npm@2.7.6</p>
|
<p id="footer">npm-publish — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-rebuild.html
vendored
2
deps/npm/html/doc/api/npm-rebuild.html
vendored
@ -30,5 +30,5 @@ the new binary. If no 'packages' parameter is specify, every package wil
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-rebuild — npm@2.7.6</p>
|
<p id="footer">npm-rebuild — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-repo.html
vendored
2
deps/npm/html/doc/api/npm-repo.html
vendored
@ -33,5 +33,5 @@ friendly for programmatic use.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-repo — npm@2.7.6</p>
|
<p id="footer">npm-repo — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-restart.html
vendored
2
deps/npm/html/doc/api/npm-restart.html
vendored
@ -52,5 +52,5 @@ behavior will be accompanied by an increase in major version number</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-restart — npm@2.7.6</p>
|
<p id="footer">npm-restart — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-root.html
vendored
2
deps/npm/html/doc/api/npm-root.html
vendored
@ -29,5 +29,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-root — npm@2.7.6</p>
|
<p id="footer">npm-root — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-run-script.html
vendored
2
deps/npm/html/doc/api/npm-run-script.html
vendored
@ -41,5 +41,5 @@ assumed to be the command to run. All other elements are ignored.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-run-script — npm@2.7.6</p>
|
<p id="footer">npm-run-script — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-search.html
vendored
2
deps/npm/html/doc/api/npm-search.html
vendored
@ -53,5 +53,5 @@ like).</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-search — npm@2.7.6</p>
|
<p id="footer">npm-search — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-shrinkwrap.html
vendored
2
deps/npm/html/doc/api/npm-shrinkwrap.html
vendored
@ -33,5 +33,5 @@ been saved.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-shrinkwrap — npm@2.7.6</p>
|
<p id="footer">npm-shrinkwrap — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-start.html
vendored
2
deps/npm/html/doc/api/npm-start.html
vendored
@ -28,5 +28,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-start — npm@2.7.6</p>
|
<p id="footer">npm-start — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-stop.html
vendored
2
deps/npm/html/doc/api/npm-stop.html
vendored
@ -28,5 +28,5 @@ in the <code>packages</code> parameter.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-stop — npm@2.7.6</p>
|
<p id="footer">npm-stop — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-tag.html
vendored
2
deps/npm/html/doc/api/npm-tag.html
vendored
@ -36,5 +36,5 @@ used. For more information about how to set this config, check
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-tag — npm@2.7.6</p>
|
<p id="footer">npm-tag — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-test.html
vendored
2
deps/npm/html/doc/api/npm-test.html
vendored
@ -30,5 +30,5 @@ in the <code>packages</code> parameter.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-test — npm@2.7.6</p>
|
<p id="footer">npm-test — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-uninstall.html
vendored
2
deps/npm/html/doc/api/npm-uninstall.html
vendored
@ -30,5 +30,5 @@ uninstalled or when an error has been encountered.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-uninstall — npm@2.7.6</p>
|
<p id="footer">npm-uninstall — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-unpublish.html
vendored
2
deps/npm/html/doc/api/npm-unpublish.html
vendored
@ -33,5 +33,5 @@ the root package entry is removed from the registry entirely.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-unpublish — npm@2.7.6</p>
|
<p id="footer">npm-unpublish — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-update.html
vendored
2
deps/npm/html/doc/api/npm-update.html
vendored
@ -33,5 +33,5 @@ parameter will be called when done or when an error occurs.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-update — npm@2.7.6</p>
|
<p id="footer">npm-update — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-version.html
vendored
2
deps/npm/html/doc/api/npm-version.html
vendored
@ -32,5 +32,5 @@ not have exactly one element. The only element should be a version number.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-version — npm@2.7.6</p>
|
<p id="footer">npm-version — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-view.html
vendored
2
deps/npm/html/doc/api/npm-view.html
vendored
@ -81,5 +81,5 @@ the field name.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-view — npm@2.7.6</p>
|
<p id="footer">npm-view — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/api/npm-whoami.html
vendored
2
deps/npm/html/doc/api/npm-whoami.html
vendored
@ -29,5 +29,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-whoami — npm@2.7.6</p>
|
<p id="footer">npm-whoami — npm@2.8.3</p>
|
||||||
|
|
||||||
|
4
deps/npm/html/doc/api/npm.html
vendored
4
deps/npm/html/doc/api/npm.html
vendored
@ -23,7 +23,7 @@ npm.load([configObject, ]function (er, npm) {
|
|||||||
npm.commands.install(["package"], cb)
|
npm.commands.install(["package"], cb)
|
||||||
})
|
})
|
||||||
</code></pre><h2 id="version">VERSION</h2>
|
</code></pre><h2 id="version">VERSION</h2>
|
||||||
<p>2.7.6</p>
|
<p>2.8.3</p>
|
||||||
<h2 id="description">DESCRIPTION</h2>
|
<h2 id="description">DESCRIPTION</h2>
|
||||||
<p>This is the API documentation for npm.
|
<p>This is the API documentation for npm.
|
||||||
To find documentation of the command line
|
To find documentation of the command line
|
||||||
@ -109,5 +109,5 @@ method names. Use the <code>npm.deref</code> method to find the real name.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm — npm@2.7.6</p>
|
<p id="footer">npm — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-access.html
vendored
2
deps/npm/html/doc/cli/npm-access.html
vendored
@ -75,5 +75,5 @@ with an HTTP 402 status code (logically enough), unless you use
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-access — npm@2.7.6</p>
|
<p id="footer">npm-access — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-adduser.html
vendored
2
deps/npm/html/doc/cli/npm-adduser.html
vendored
@ -68,5 +68,5 @@ precedence over any global configuration.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-adduser — npm@2.7.6</p>
|
<p id="footer">npm-adduser — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-bin.html
vendored
2
deps/npm/html/doc/cli/npm-bin.html
vendored
@ -35,5 +35,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-bin — npm@2.7.6</p>
|
<p id="footer">npm-bin — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-bugs.html
vendored
2
deps/npm/html/doc/cli/npm-bugs.html
vendored
@ -54,5 +54,5 @@ a <code>package.json</code> in the current folder and use the <code>name</code>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-bugs — npm@2.7.6</p>
|
<p id="footer">npm-bugs — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-build.html
vendored
2
deps/npm/html/doc/cli/npm-build.html
vendored
@ -38,5 +38,5 @@ A folder containing a <code>package.json</code> file in its root.</li>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-build — npm@2.7.6</p>
|
<p id="footer">npm-build — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-bundle.html
vendored
2
deps/npm/html/doc/cli/npm-bundle.html
vendored
@ -31,5 +31,5 @@ install packages into the local space.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-bundle — npm@2.7.6</p>
|
<p id="footer">npm-bundle — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-cache.html
vendored
2
deps/npm/html/doc/cli/npm-cache.html
vendored
@ -81,5 +81,5 @@ they do not make an HTTP request to the registry.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-cache — npm@2.7.6</p>
|
<p id="footer">npm-cache — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-completion.html
vendored
2
deps/npm/html/doc/cli/npm-completion.html
vendored
@ -42,5 +42,5 @@ completions based on the arguments.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-completion — npm@2.7.6</p>
|
<p id="footer">npm-completion — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-config.html
vendored
2
deps/npm/html/doc/cli/npm-config.html
vendored
@ -66,5 +66,5 @@ global config.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-config — npm@2.7.6</p>
|
<p id="footer">npm-config — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-dedupe.html
vendored
2
deps/npm/html/doc/cli/npm-dedupe.html
vendored
@ -63,5 +63,5 @@ versions.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-dedupe — npm@2.7.6</p>
|
<p id="footer">npm-dedupe — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-deprecate.html
vendored
2
deps/npm/html/doc/cli/npm-deprecate.html
vendored
@ -38,5 +38,5 @@ something like this:</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-deprecate — npm@2.7.6</p>
|
<p id="footer">npm-deprecate — npm@2.8.3</p>
|
||||||
|
|
||||||
|
5
deps/npm/html/doc/cli/npm-dist-tag.html
vendored
5
deps/npm/html/doc/cli/npm-dist-tag.html
vendored
@ -35,7 +35,8 @@ of using a specific version number:</p>
|
|||||||
</code></pre><p>When installing dependencies, a preferred tagged version may be specified:</p>
|
</code></pre><p>When installing dependencies, a preferred tagged version may be specified:</p>
|
||||||
<pre><code>npm install --tag <tag>
|
<pre><code>npm install --tag <tag>
|
||||||
</code></pre><p>This also applies to <code>npm dedupe</code>.</p>
|
</code></pre><p>This also applies to <code>npm dedupe</code>.</p>
|
||||||
<p>Publishing a package always sets the "latest" tag to the published version.</p>
|
<p>Publishing a package sets the "latest" tag to the published version unless the
|
||||||
|
<code>--tag</code> option is used. For example, <code>npm publish --tag=beta</code>.</p>
|
||||||
<h2 id="purpose">PURPOSE</h2>
|
<h2 id="purpose">PURPOSE</h2>
|
||||||
<p>Tags can be used to provide an alias instead of version numbers. For
|
<p>Tags can be used to provide an alias instead of version numbers. For
|
||||||
example, <code>npm</code> currently uses the tag "next" to identify the upcoming
|
example, <code>npm</code> currently uses the tag "next" to identify the upcoming
|
||||||
@ -76,5 +77,5 @@ begin with a number or the letter <code>v</code>.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-dist-tag — npm@2.7.6</p>
|
<p id="footer">npm-dist-tag — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-docs.html
vendored
2
deps/npm/html/doc/cli/npm-docs.html
vendored
@ -56,5 +56,5 @@ the current folder and use the <code>name</code> property.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-docs — npm@2.7.6</p>
|
<p id="footer">npm-docs — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-edit.html
vendored
2
deps/npm/html/doc/cli/npm-edit.html
vendored
@ -49,5 +49,5 @@ or <code>"notepad"</code> on Windows.</li>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-edit — npm@2.7.6</p>
|
<p id="footer">npm-edit — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-explore.html
vendored
2
deps/npm/html/doc/cli/npm-explore.html
vendored
@ -49,5 +49,5 @@ Windows</li>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-explore — npm@2.7.6</p>
|
<p id="footer">npm-explore — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-help-search.html
vendored
2
deps/npm/html/doc/cli/npm-help-search.html
vendored
@ -46,5 +46,5 @@ where the terms were found in the documentation.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-help-search — npm@2.7.6</p>
|
<p id="footer">npm-help-search — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-help.html
vendored
2
deps/npm/html/doc/cli/npm-help.html
vendored
@ -52,5 +52,5 @@ matches are equivalent to specifying a topic name.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-help — npm@2.7.6</p>
|
<p id="footer">npm-help — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-init.html
vendored
2
deps/npm/html/doc/cli/npm-init.html
vendored
@ -48,5 +48,5 @@ defaults and not prompt you for any options.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-init — npm@2.7.6</p>
|
<p id="footer">npm-init — npm@2.8.3</p>
|
||||||
|
|
||||||
|
32
deps/npm/html/doc/cli/npm-install.html
vendored
32
deps/npm/html/doc/cli/npm-install.html
vendored
@ -136,13 +136,37 @@ fetch the package by name if it is not valid.
|
|||||||
attempting to clone it using <code>git</code>.</p>
|
attempting to clone it using <code>git</code>.</p>
|
||||||
<p> Example:</p>
|
<p> Example:</p>
|
||||||
<pre><code> npm install mygithubuser/myproject
|
<pre><code> npm install mygithubuser/myproject
|
||||||
</code></pre><p> To reference a package in a git repo that is not on GitHub, see git
|
</code></pre><p> To reference a package in a generic git repo (not on GitHub), see git remote
|
||||||
remote urls below.</p>
|
urls below.</p>
|
||||||
</li>
|
</li>
|
||||||
|
<li><p><code>npm install github:<githubname>/<githubrepo></code>:</p>
|
||||||
|
<p> The same as the above, but explicitly marked as a GitHub dependency.</p>
|
||||||
|
<p> Example:</p>
|
||||||
|
<pre><code> npm install github:npm/npm
|
||||||
|
</code></pre></li>
|
||||||
|
<li><p><code>npm install gist:[<githubname>/]<gistID></code>:</p>
|
||||||
|
<p> Install the package at <code>https://gist.github.com/gistID</code> by attempting to
|
||||||
|
clone it using <code>git</code>. The GitHub username associated with the gist is
|
||||||
|
optional and will not be saved in <code>package.json</code> if <code>--save</code> is used.</p>
|
||||||
|
<p> Example:</p>
|
||||||
|
<pre><code> npm install gist:101a11beef
|
||||||
|
</code></pre></li>
|
||||||
|
<li><p><code>npm install bitbucket:<bitbucketname>/<bitbucketrepo></code>:</p>
|
||||||
|
<p> Install the package at <code>https://bitbucket.org/bitbucketname/bitbucketrepo</code>
|
||||||
|
by attempting to clone it using <code>git</code>.</p>
|
||||||
|
<p> Example:</p>
|
||||||
|
<pre><code> npm install bitbucket:mybitbucketuser/myproject
|
||||||
|
</code></pre></li>
|
||||||
|
<li><p><code>npm install gitlab:<gitlabname>/<gitlabrepo></code>:</p>
|
||||||
|
<p> Install the package at <code>https://gitlab.com/gitlabname/gitlabrepo</code>
|
||||||
|
by attempting to clone it using <code>git</code>.</p>
|
||||||
|
<p> Example:</p>
|
||||||
|
<pre><code> npm install gitlab:mygitlabuser/myproject
|
||||||
|
</code></pre></li>
|
||||||
<li><p><code>npm install <git remote url></code>:</p>
|
<li><p><code>npm install <git remote url></code>:</p>
|
||||||
<p> Install a package by cloning a git remote url. The format of the git
|
<p> Install a package by cloning a git remote url. The format of the git
|
||||||
url is:</p>
|
url is:</p>
|
||||||
<pre><code> <protocol>://[<user>@]<hostname><separator><path>[#<commit-ish>]
|
<pre><code> <protocol>://[<user>[:<password>]@]<hostname><separator><path>[#<commit-ish>]
|
||||||
</code></pre><p> <code><protocol></code> is one of <code>git</code>, <code>git+ssh</code>, <code>git+http</code>, or
|
</code></pre><p> <code><protocol></code> is one of <code>git</code>, <code>git+ssh</code>, <code>git+http</code>, or
|
||||||
<code>git+https</code>. If no <code><commit-ish></code> is specified, then <code>master</code> is
|
<code>git+https</code>. If no <code><commit-ish></code> is specified, then <code>master</code> is
|
||||||
used.</p>
|
used.</p>
|
||||||
@ -240,5 +264,5 @@ affects a real use-case, it will be investigated.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-install — npm@2.7.6</p>
|
<p id="footer">npm-install — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-link.html
vendored
2
deps/npm/html/doc/cli/npm-link.html
vendored
@ -72,5 +72,5 @@ include that scope, e.g.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-link — npm@2.7.6</p>
|
<p id="footer">npm-link — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-logout.html
vendored
2
deps/npm/html/doc/cli/npm-logout.html
vendored
@ -55,5 +55,5 @@ that registry at the same time.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-logout — npm@2.7.6</p>
|
<p id="footer">npm-logout — npm@2.8.3</p>
|
||||||
|
|
||||||
|
4
deps/npm/html/doc/cli/npm-ls.html
vendored
4
deps/npm/html/doc/cli/npm-ls.html
vendored
@ -22,7 +22,7 @@ installed, as well as their dependencies, in a tree-structure.</p>
|
|||||||
limit the results to only the paths to the packages named. Note that
|
limit the results to only the paths to the packages named. Note that
|
||||||
nested packages will <em>also</em> show the paths to the specified packages.
|
nested packages will <em>also</em> show the paths to the specified packages.
|
||||||
For example, running <code>npm ls promzard</code> in npm's source tree will show:</p>
|
For example, running <code>npm ls promzard</code> in npm's source tree will show:</p>
|
||||||
<pre><code>npm@2.7.6 /path/to/npm
|
<pre><code>npm@2.8.3 /path/to/npm
|
||||||
└─┬ init-package-json@0.0.4
|
└─┬ init-package-json@0.0.4
|
||||||
└── promzard@0.1.5
|
└── promzard@0.1.5
|
||||||
</code></pre><p>It will print out extraneous, missing, and invalid packages.</p>
|
</code></pre><p>It will print out extraneous, missing, and invalid packages.</p>
|
||||||
@ -97,5 +97,5 @@ project.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-ls — npm@2.7.6</p>
|
<p id="footer">npm-ls — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-outdated.html
vendored
2
deps/npm/html/doc/cli/npm-outdated.html
vendored
@ -67,5 +67,5 @@ project.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-outdated — npm@2.7.6</p>
|
<p id="footer">npm-outdated — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-owner.html
vendored
2
deps/npm/html/doc/cli/npm-owner.html
vendored
@ -49,5 +49,5 @@ that is not implemented at this time.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-owner — npm@2.7.6</p>
|
<p id="footer">npm-owner — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-pack.html
vendored
2
deps/npm/html/doc/cli/npm-pack.html
vendored
@ -41,5 +41,5 @@ overwritten the second time.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-pack — npm@2.7.6</p>
|
<p id="footer">npm-pack — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-prefix.html
vendored
2
deps/npm/html/doc/cli/npm-prefix.html
vendored
@ -38,5 +38,5 @@ to contain a package.json file unless <code>-g</code> is also specified.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-prefix — npm@2.7.6</p>
|
<p id="footer">npm-prefix — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-prune.html
vendored
2
deps/npm/html/doc/cli/npm-prune.html
vendored
@ -39,5 +39,5 @@ packages specified in your <code>devDependencies</code>.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-prune — npm@2.7.6</p>
|
<p id="footer">npm-prune — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-publish.html
vendored
2
deps/npm/html/doc/cli/npm-publish.html
vendored
@ -66,5 +66,5 @@ it is removed with <a href="../cli/npm-unpublish.html"><a href="../cli/npm-unpub
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-publish — npm@2.7.6</p>
|
<p id="footer">npm-publish — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-rebuild.html
vendored
2
deps/npm/html/doc/cli/npm-rebuild.html
vendored
@ -38,5 +38,5 @@ the new binary.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-rebuild — npm@2.7.6</p>
|
<p id="footer">npm-rebuild — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-repo.html
vendored
2
deps/npm/html/doc/cli/npm-repo.html
vendored
@ -42,5 +42,5 @@ a <code>package.json</code> in the current folder and use the <code>name</code>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-repo — npm@2.7.6</p>
|
<p id="footer">npm-repo — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-restart.html
vendored
2
deps/npm/html/doc/cli/npm-restart.html
vendored
@ -53,5 +53,5 @@ behavior will be accompanied by an increase in major version number</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-restart — npm@2.7.6</p>
|
<p id="footer">npm-restart — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-rm.html
vendored
2
deps/npm/html/doc/cli/npm-rm.html
vendored
@ -39,5 +39,5 @@ on its behalf.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-rm — npm@2.7.6</p>
|
<p id="footer">npm-rm — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-root.html
vendored
2
deps/npm/html/doc/cli/npm-root.html
vendored
@ -35,5 +35,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-root — npm@2.7.6</p>
|
<p id="footer">npm-root — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-run-script.html
vendored
2
deps/npm/html/doc/cli/npm-run-script.html
vendored
@ -56,5 +56,5 @@ you should write <code>"scripts": {"test": "tap test/\*
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-run-script — npm@2.7.6</p>
|
<p id="footer">npm-run-script — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-search.html
vendored
2
deps/npm/html/doc/cli/npm-search.html
vendored
@ -49,5 +49,5 @@ fall on multiple lines.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-search — npm@2.7.6</p>
|
<p id="footer">npm-search — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-shrinkwrap.html
vendored
2
deps/npm/html/doc/cli/npm-shrinkwrap.html
vendored
@ -164,5 +164,5 @@ contents rather than versions.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-shrinkwrap — npm@2.7.6</p>
|
<p id="footer">npm-shrinkwrap — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-star.html
vendored
2
deps/npm/html/doc/cli/npm-star.html
vendored
@ -36,5 +36,5 @@ a vaguely positive way to show that you care.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-star — npm@2.7.6</p>
|
<p id="footer">npm-star — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-stars.html
vendored
2
deps/npm/html/doc/cli/npm-stars.html
vendored
@ -37,5 +37,5 @@ you will most certainly enjoy this command.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-stars — npm@2.7.6</p>
|
<p id="footer">npm-stars — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-start.html
vendored
2
deps/npm/html/doc/cli/npm-start.html
vendored
@ -34,5 +34,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-start — npm@2.7.6</p>
|
<p id="footer">npm-start — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-stop.html
vendored
2
deps/npm/html/doc/cli/npm-stop.html
vendored
@ -34,5 +34,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-stop — npm@2.7.6</p>
|
<p id="footer">npm-stop — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-tag.html
vendored
2
deps/npm/html/doc/cli/npm-tag.html
vendored
@ -62,5 +62,5 @@ that do not begin with a number or the letter <code>v</code>.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-tag — npm@2.7.6</p>
|
<p id="footer">npm-tag — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-test.html
vendored
2
deps/npm/html/doc/cli/npm-test.html
vendored
@ -37,5 +37,5 @@ true.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-test — npm@2.7.6</p>
|
<p id="footer">npm-test — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-uninstall.html
vendored
2
deps/npm/html/doc/cli/npm-uninstall.html
vendored
@ -57,5 +57,5 @@ npm uninstall dtrace-provider --save-optional
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-uninstall — npm@2.7.6</p>
|
<p id="footer">npm-uninstall — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-unpublish.html
vendored
2
deps/npm/html/doc/cli/npm-unpublish.html
vendored
@ -47,5 +47,5 @@ package again, a new version number must be used.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-unpublish — npm@2.7.6</p>
|
<p id="footer">npm-unpublish — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-update.html
vendored
2
deps/npm/html/doc/cli/npm-update.html
vendored
@ -119,5 +119,5 @@ be <em>downgraded</em>.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-update — npm@2.7.6</p>
|
<p id="footer">npm-update — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-version.html
vendored
2
deps/npm/html/doc/cli/npm-version.html
vendored
@ -65,5 +65,5 @@ Enter passphrase:
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-version — npm@2.7.6</p>
|
<p id="footer">npm-version — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-view.html
vendored
2
deps/npm/html/doc/cli/npm-view.html
vendored
@ -82,5 +82,5 @@ the field name.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-view — npm@2.7.6</p>
|
<p id="footer">npm-view — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-whoami.html
vendored
2
deps/npm/html/doc/cli/npm-whoami.html
vendored
@ -33,5 +33,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-whoami — npm@2.7.6</p>
|
<p id="footer">npm-whoami — npm@2.8.3</p>
|
||||||
|
|
||||||
|
10
deps/npm/html/doc/cli/npm.html
vendored
10
deps/npm/html/doc/cli/npm.html
vendored
@ -13,7 +13,7 @@
|
|||||||
<h2 id="synopsis">SYNOPSIS</h2>
|
<h2 id="synopsis">SYNOPSIS</h2>
|
||||||
<pre><code>npm <command> [args]
|
<pre><code>npm <command> [args]
|
||||||
</code></pre><h2 id="version">VERSION</h2>
|
</code></pre><h2 id="version">VERSION</h2>
|
||||||
<p>2.7.6</p>
|
<p>2.8.3</p>
|
||||||
<h2 id="description">DESCRIPTION</h2>
|
<h2 id="description">DESCRIPTION</h2>
|
||||||
<p>npm is the package manager for the Node JavaScript platform. It puts
|
<p>npm is the package manager for the Node JavaScript platform. It puts
|
||||||
modules in place so that node can find them, and manages dependency
|
modules in place so that node can find them, and manages dependency
|
||||||
@ -110,7 +110,7 @@ easily by doing <code>npm view npm contributors</code>.</p>
|
|||||||
the issues list or ask on the mailing list.</p>
|
the issues list or ask on the mailing list.</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="http://github.com/npm/npm/issues">http://github.com/npm/npm/issues</a></li>
|
<li><a href="http://github.com/npm/npm/issues">http://github.com/npm/npm/issues</a></li>
|
||||||
<li><a href="mailto:npm-@googlegroups.com">npm-@googlegroups.com</a></li>
|
<li><a href="mailto:npm-@googlegroups.com">npm-@googlegroups.com</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 id="bugs">BUGS</h2>
|
<h2 id="bugs">BUGS</h2>
|
||||||
<p>When you find issues, please report them:</p>
|
<p>When you find issues, please report them:</p>
|
||||||
@ -118,7 +118,7 @@ the issues list or ask on the mailing list.</p>
|
|||||||
<li>web:
|
<li>web:
|
||||||
<a href="http://github.com/npm/npm/issues">http://github.com/npm/npm/issues</a></li>
|
<a href="http://github.com/npm/npm/issues">http://github.com/npm/npm/issues</a></li>
|
||||||
<li>email:
|
<li>email:
|
||||||
<a href="mailto:npm-@googlegroups.com">npm-@googlegroups.com</a></li>
|
<a href="mailto:npm-@googlegroups.com">npm-@googlegroups.com</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>Be sure to include <em>all</em> of the output from the npm command that didn't work
|
<p>Be sure to include <em>all</em> of the output from the npm command that didn't work
|
||||||
as expected. The <code>npm-debug.log</code> file is also helpful to provide.</p>
|
as expected. The <code>npm-debug.log</code> file is also helpful to provide.</p>
|
||||||
@ -128,7 +128,7 @@ will no doubt tell you to put the output in a gist or email.</p>
|
|||||||
<p><a href="http://blog.izs.me/">Isaac Z. Schlueter</a> ::
|
<p><a href="http://blog.izs.me/">Isaac Z. Schlueter</a> ::
|
||||||
<a href="https://github.com/isaacs/">isaacs</a> ::
|
<a href="https://github.com/isaacs/">isaacs</a> ::
|
||||||
<a href="http://twitter.com/izs">@izs</a> ::
|
<a href="http://twitter.com/izs">@izs</a> ::
|
||||||
<a href="mailto:i@izs.me">i@izs.me</a></p>
|
<a href="mailto:i@izs.me">i@izs.me</a></p>
|
||||||
<h2 id="see-also">SEE ALSO</h2>
|
<h2 id="see-also">SEE ALSO</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../cli/npm-help.html"><a href="../cli/npm-help.html">npm-help(1)</a></a></li>
|
<li><a href="../cli/npm-help.html"><a href="../cli/npm-help.html">npm-help(1)</a></a></li>
|
||||||
@ -154,5 +154,5 @@ will no doubt tell you to put the output in a gist or email.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm — npm@2.7.6</p>
|
<p id="footer">npm — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/files/npm-folders.html
vendored
2
deps/npm/html/doc/files/npm-folders.html
vendored
@ -184,5 +184,5 @@ cannot be found elsewhere. See <code><a href="../files/package.json.html"><a hr
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-folders — npm@2.7.6</p>
|
<p id="footer">npm-folders — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/files/npm-global.html
vendored
2
deps/npm/html/doc/files/npm-global.html
vendored
@ -184,5 +184,5 @@ cannot be found elsewhere. See <code><a href="../files/package.json.html"><a hr
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-global — npm@2.7.6</p>
|
<p id="footer">npm-global — npm@2.8.3</p>
|
||||||
|
|
||||||
|
12
deps/npm/html/doc/files/npm-json.html
vendored
12
deps/npm/html/doc/files/npm-json.html
vendored
@ -196,9 +196,15 @@ command will be able to find you.</p>
|
|||||||
</code></pre><p>The URL should be a publicly available (perhaps read-only) url that can be handed
|
</code></pre><p>The URL should be a publicly available (perhaps read-only) url that can be handed
|
||||||
directly to a VCS program without any modification. It should not be a url to an
|
directly to a VCS program without any modification. It should not be a url to an
|
||||||
html project page that you put in your browser. It's for computers.</p>
|
html project page that you put in your browser. It's for computers.</p>
|
||||||
<p>For GitHub repositories you can use the same shortcut syntax you use for <code>npm
|
<p>For GitHub, GitHub gist, Bitbucket, or GitLab repositories you can use the same
|
||||||
install</code>:</p>
|
shortcut syntax you use for <code>npm install</code>:</p>
|
||||||
<pre><code>"repository": "npm/npm"
|
<pre><code>"repository": "npm/npm"
|
||||||
|
|
||||||
|
"repository": "gist:11081aaa281"
|
||||||
|
|
||||||
|
"repository": "bitbucket:example/repo"
|
||||||
|
|
||||||
|
"repository": "gitlab:another/repo"
|
||||||
</code></pre><h2 id="scripts">scripts</h2>
|
</code></pre><h2 id="scripts">scripts</h2>
|
||||||
<p>The "scripts" property is a dictionary containing script commands that are run
|
<p>The "scripts" property is a dictionary containing script commands that are run
|
||||||
at various times in the lifecycle of your package. The key is the lifecycle
|
at various times in the lifecycle of your package. The key is the lifecycle
|
||||||
@ -496,5 +502,5 @@ ignored.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-json — npm@2.7.6</p>
|
<p id="footer">npm-json — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/files/npmrc.html
vendored
2
deps/npm/html/doc/files/npmrc.html
vendored
@ -77,5 +77,5 @@ manner.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npmrc — npm@2.7.6</p>
|
<p id="footer">npmrc — npm@2.8.3</p>
|
||||||
|
|
||||||
|
12
deps/npm/html/doc/files/package.json.html
vendored
12
deps/npm/html/doc/files/package.json.html
vendored
@ -196,9 +196,15 @@ command will be able to find you.</p>
|
|||||||
</code></pre><p>The URL should be a publicly available (perhaps read-only) url that can be handed
|
</code></pre><p>The URL should be a publicly available (perhaps read-only) url that can be handed
|
||||||
directly to a VCS program without any modification. It should not be a url to an
|
directly to a VCS program without any modification. It should not be a url to an
|
||||||
html project page that you put in your browser. It's for computers.</p>
|
html project page that you put in your browser. It's for computers.</p>
|
||||||
<p>For GitHub repositories you can use the same shortcut syntax you use for <code>npm
|
<p>For GitHub, GitHub gist, Bitbucket, or GitLab repositories you can use the same
|
||||||
install</code>:</p>
|
shortcut syntax you use for <code>npm install</code>:</p>
|
||||||
<pre><code>"repository": "npm/npm"
|
<pre><code>"repository": "npm/npm"
|
||||||
|
|
||||||
|
"repository": "gist:11081aaa281"
|
||||||
|
|
||||||
|
"repository": "bitbucket:example/repo"
|
||||||
|
|
||||||
|
"repository": "gitlab:another/repo"
|
||||||
</code></pre><h2 id="scripts">scripts</h2>
|
</code></pre><h2 id="scripts">scripts</h2>
|
||||||
<p>The "scripts" property is a dictionary containing script commands that are run
|
<p>The "scripts" property is a dictionary containing script commands that are run
|
||||||
at various times in the lifecycle of your package. The key is the lifecycle
|
at various times in the lifecycle of your package. The key is the lifecycle
|
||||||
@ -496,5 +502,5 @@ ignored.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">package.json — npm@2.7.6</p>
|
<p id="footer">package.json — npm@2.8.3</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/index.html
vendored
2
deps/npm/html/doc/index.html
vendored
@ -236,5 +236,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">index — npm@2.7.6</p>
|
<p id="footer">index — npm@2.8.3</p>
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user