deps: upgrade npm to 3.8.6
PR-URL: https://github.com/nodejs/node/pull/6153 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
This commit is contained in:
parent
a432935211
commit
40e79b1305
7
deps/npm/AUTHORS
vendored
7
deps/npm/AUTHORS
vendored
@ -382,3 +382,10 @@ Zac <zdoege@gm.slc.edu>
|
||||
GriffinSchneider <griffinschneider@gmail.com>
|
||||
Andres Kalle <mjomble@gmail.com>
|
||||
thefourtheye <thefourtheye@users.noreply.github.com>
|
||||
Yael <yaelz@users.noreply.github.com>
|
||||
Yann Odeyer <yann@odeyer.com>
|
||||
James Monger <jameskmonger@hotmail.co.uk>
|
||||
Thomas Hallock <thomas@1stdibs.com>
|
||||
Paul Irish <paul.irish@gmail.com>
|
||||
Paul O'Leary McCann <polm@dampfkraft.com>
|
||||
Francis Gulotta <wizard@roborooter.com>
|
||||
|
204
deps/npm/CHANGELOG.md
vendored
204
deps/npm/CHANGELOG.md
vendored
@ -1,8 +1,210 @@
|
||||
### v3.8.6 (2016-03-31)
|
||||
|
||||
Heeeeeey y'all.
|
||||
|
||||
Kat here! Rebecca's been schmoozing with folks at [Microsoft
|
||||
Build](https://build.microsoft.com/), so I'm doing the `npm@3` release this
|
||||
week.
|
||||
|
||||
Speaking of Build, it looks like Microsoft is doing some bash thing. This might
|
||||
be really good news for our Windows users once it rolls around. We're keeping an
|
||||
eye out and feeling hopeful. 🙆
|
||||
|
||||
As far as the release goes: We're really happy to be getting more and more
|
||||
community contributions! Keep it up! We really appreciate folks trying to help
|
||||
us, and we'll do our best to help point you in the right direction. Even things
|
||||
like documentation are a huge help. And remember -- you get socks for it, too!
|
||||
|
||||
#### FIXES
|
||||
|
||||
* [`f8fb4d8`](https://github.com/npm/npm/commit/f8fb4d83923810eb78d075bd200a9376c64c3e3a)
|
||||
[#12079](https://github.com/npm/npm/pull/12079)
|
||||
Back in `npm@3.2.2` we included [a patch that made it so `npm install pkg` was
|
||||
basically `npm install pkg@latest` instead of
|
||||
`pkg@*`](https://github.com/npm/npm/pull/9170)
|
||||
This is probably what most users expected, but it also ended up [breaking `npm
|
||||
deprecate`](https://github.com/npm/npm/pull/9170) when no version was provided
|
||||
for a package. In that case, we were using `*` to mean "deprecate all
|
||||
versions" and relying on the `pkg` -> `pkg@*` conversion.
|
||||
This patch fixes `npm deprecate pkg` to work as it used to by special casing
|
||||
that particular command's behavior.
|
||||
([@polm](https://github.com/polm))
|
||||
* [`458f773`](https://github.com/npm/npm/commit/458f7734f3376aba0b6ff16d34a25892f7717e40)
|
||||
[#12146](https://github.com/npm/npm/pull/12146)
|
||||
Adds `make doc-clean` to `prepublish` script, to clear out previously built
|
||||
docs before publishing a new npm version
|
||||
([@watilde](https://github.com/watilde))
|
||||
* [`f0d1521`](https://github.com/npm/npm/commit/f0d1521038e956b2197673f36c464684293ce99d)
|
||||
[#12146](https://github.com/npm/npm/pull/12146)
|
||||
Adds `doc-clean` phony target to `make publish`.
|
||||
([@watilde](https://github.com/watilde))
|
||||
|
||||
#### DOC UPDATES
|
||||
|
||||
* [`ea92ffc`](https://github.com/npm/npm/commit/ea92ffc9dd2a063896353fc52c104e85ec061360)
|
||||
[#12147](https://github.com/npm/npm/pull/12147)
|
||||
Document that the current behavior of `engines` is just to warn if the node
|
||||
platform is incompatible.
|
||||
([@reconbot](https://github.com/reconbot))
|
||||
* [`cd1ba44`](https://github.com/npm/npm/commit/cd1ba4423b3ca889c741141b95b0d9472b9f71ea)
|
||||
[#12143](https://github.com/npm/npm/pull/12143)
|
||||
Remove `npm faq` command, since the [FAQ was
|
||||
removed](https://github.com/npm/npm/pull/10547).
|
||||
([@watilde](https://github.com/watilde))
|
||||
* [`50a12cb`](https://github.com/npm/npm/commit/50a12cb1f5f158af78d6962ad20ff0a98bc18f18)
|
||||
[#12143](https://github.com/npm/npm/pull/12143)
|
||||
Remove references to the FAQ from the docs, since [it was
|
||||
removed](https://github.com/npm/npm/pull/10547).
|
||||
([@watilde](https://github.com/watilde))
|
||||
* [`60051c2`](https://github.com/npm/npm/commit/60051c25e2ab80c667137dfcd04b242eea25980e)
|
||||
[#12093](https://github.com/npm/npm/pull/12093)
|
||||
Update `bugs` url in `package.json` to use the `https` URL for Github.
|
||||
([@watilde](https://github.com/watilde))
|
||||
* [`af30c37`](https://github.com/npm/npm/commit/af30c374ef22ed1a1c71b14fced7c4b8350e4e82)
|
||||
[#12075](https://github.com/npm/npm/pull/12075)
|
||||
Add the `--ignore-scripts` flag to the `npm install` docs.
|
||||
([@paulirish](https://github.com/paulirish))
|
||||
* [`632b214`](https://github.com/npm/npm/commit/632b214b2f2450e844410792e5947e46844612ff)
|
||||
[#12063](https://github.com/npm/npm/pull/12063)
|
||||
Various minor fixes to the html docs homepage.
|
||||
([@watilde](https://github.com/watilde))
|
||||
|
||||
#### DEP BUMPS
|
||||
|
||||
* [`3da0171`](https://github.com/npm/npm/commit/3da01716a0e41d6b5adee2b4fc70fcaf08c0eb24)
|
||||
`lodash.without@4.1.2`
|
||||
([@jdalton](https://github.com/jdalton))
|
||||
* [`69ccf6d`](https://github.com/npm/npm/commit/69ccf6dd4caf95cd0628054307487cae1885acd0)
|
||||
`lodash.uniq@4.2.1`
|
||||
([@jdalton](https://github.com/jdalton))
|
||||
* [`b50c41a`](https://github.com/npm/npm/commit/b50c41a9930dc5353a23c5ae2ff87bb99e11d482)
|
||||
`lodash.union@4.2.1`
|
||||
([@jdalton](https://github.com/jdalton))
|
||||
* [`59c1ad7`](https://github.com/npm/npm/commit/59c1ad7b6f243d07618ed5703bd11d787732fc57)
|
||||
`lodash.clonedeep@4.3.2`
|
||||
([@jdalton](https://github.com/jdalton))
|
||||
* [`2b4f797`](https://github.com/npm/npm/commit/2b4f797dba8e7a1376c8335b7223e82d02cd8243)
|
||||
`lodash._baseuniq@4.5.1`
|
||||
([@jdalton](https://github.com/jdalton))
|
||||
|
||||
### v3.8.5 (2016-03-24)
|
||||
|
||||
Like my esteemed colleague [@zkat](https://github.com/zkat) said in this
|
||||
week's [LTS release notes](https://github.com/npm/npm/releases/tag/v2.15.2),
|
||||
this week is another small release but we are continuing to work on our
|
||||
[Windows efforts](https://github.com/npm/npm/pull/11444).
|
||||
|
||||
You may also be interested in reading the [LTS process and
|
||||
policy](https://github.com/npm/npm/wiki/LTS) that
|
||||
[@othiym23](https://github.com/othiym23) put together recently. If you have any
|
||||
feedback, we would love to hear.
|
||||
|
||||
#### DOCTOR IT HURTS WHEN LINK TO MY LINK
|
||||
|
||||
Well then, don't do that.
|
||||
|
||||
* [`0d4a0b1`](https://github.com/npm/npm/commit/0d4a0b1)
|
||||
[#11442](https://github.com/npm/npm/pull/11442)
|
||||
Fail if the user asks us to make a link from a module back on to itself.
|
||||
([@antialias](https://github.com/antialias))
|
||||
|
||||
#### ERR MODULE LIST TOO LONG
|
||||
|
||||
* [`b271ed2`](https://github.com/npm/npm/commit/b271ed2)
|
||||
[#11983](https://github.com/npm/npm/issues/11983)
|
||||
Exit early if no arguments were provided to search instead of trying to display all the modules,
|
||||
running out of memory, and then crashing.
|
||||
([@SimenB](https://github.com/SimenB))
|
||||
|
||||
#### ELIMINATE UNUSED MODULE
|
||||
|
||||
* [`b8c7cd7`](https://github.com/npm/npm/commit/b8c7cd7)
|
||||
[#12000](https://github.com/npm/npm/pull/12000)
|
||||
Stop depending on [`async-some`](https://npmjs.com/package/async-some) as it's no
|
||||
longer used in npm.
|
||||
([@watilde](https://github.com/watilde))
|
||||
|
||||
#### DOCUMENTATION IMPROVEMENTS
|
||||
|
||||
* [`fdd6b28`](https://github.com/npm/npm/commit/fdd6b28)
|
||||
[#11884](https://github.com/npm/npm/pull/11884)
|
||||
Include `node_modules` in the list of files and directories that npm won't
|
||||
include in packages ordinarily. (Modules listed in `bundledDependencies` and things
|
||||
that those modules rely on, ARE included of course.)
|
||||
([@Jameskmonger](https://github.com/Jameskmonger))
|
||||
* [`aac15eb`](https://github.com/npm/npm/commit/aac15eb)
|
||||
[#12006](https://github.com/npm/npm/pull/12006)
|
||||
Fix typo in npm-orgs documentation, where teams docs went to access docs and vice versa.
|
||||
([@yaelz](https://github.com/yaelz))
|
||||
|
||||
#### FEWER NETWORK TESTS
|
||||
|
||||
* [`3e41360`](https://github.com/npm/npm/commit/3e41360)
|
||||
[#11987](https://github.com/npm/npm/pull/11987)
|
||||
Fix test that was inappropriately hitting the network
|
||||
([@yodeyer](https://github.com/yodeyer))
|
||||
|
||||
### v3.8.4 (2016-03-24)
|
||||
|
||||
Was erroneously released with just a changelog typo correction and was
|
||||
otherwise the same as 3.8.3.
|
||||
|
||||
### v3.8.3 (2016-03-17):
|
||||
|
||||
#### SECURITY ADVISORY: BEARER TOKEN DISCLOSURE
|
||||
|
||||
This release includes [the fix for a
|
||||
vulnerability](https://github.com/npm/npm/commit/f67ecad59e99a03e5aad8e93cd1a086ae087cb29)
|
||||
that could cause the unintentional leakage of bearer tokens.
|
||||
|
||||
Here are details on this vulnerability and how it affects you.
|
||||
|
||||
##### DETAILS
|
||||
|
||||
Since 2014, npm’s registry has used HTTP bearer tokens to authenticate requests
|
||||
from the npm’s command-line interface. A design flaw meant that the CLI was
|
||||
sending these bearer tokens with _every_ request made by logged-in users,
|
||||
regardless of the destination of their request. (The bearers only should have
|
||||
been included for requests made against a registry or registries used for the
|
||||
current install.)
|
||||
|
||||
An attacker could exploit this flaw by setting up an HTTP server that could
|
||||
collect authentication information, then use this authentication information to
|
||||
impersonate the users whose tokens they collected. This impersonation would
|
||||
allow them to do anything the compromised users could do, including publishing
|
||||
new versions of packages.
|
||||
|
||||
With the fixes we’ve released, the CLI will only send bearer tokens with
|
||||
requests made against a registry.
|
||||
|
||||
##### THINK YOU'RE AT RISK? REGENERATE YOUR TOKENS
|
||||
|
||||
If you believe that your bearer token may have been leaked, [invalidate your
|
||||
current npm bearer tokens](https://www.npmjs.com/settings/tokens) and rerun
|
||||
`npm login` to generate new tokens. Keep in mind that this may cause continuous
|
||||
integration builds in services like Travis to break, in which case you’ll need
|
||||
to update the tokens in your CI server’s configuration.
|
||||
|
||||
##### WILL THIS BREAK MY CURRENT SETUP?
|
||||
|
||||
Maybe.
|
||||
|
||||
npm’s CLI team believes that the fix won’t break any existing registry setups.
|
||||
Due to the large number of registry software suites out in the wild, though,
|
||||
it’s possible our change will be breaking in some cases.
|
||||
|
||||
If so, please [file an issue](https://github.com/npm/npm/issues/new) describing
|
||||
the software you’re using and how it broke. Our team will work with you to
|
||||
mitigate the breakage.
|
||||
|
||||
##### CREDIT & THANKS
|
||||
|
||||
Thanks to Mitar, Will White & the team at Mapbox, Max Motovilov, and James
|
||||
Taylor for reporting this vulnerability to npm.
|
||||
|
||||
#### PERFORMANCE IMPROVEMENTS
|
||||
|
||||
The updated [`are-we-there-yet`](https://npm.com/package/are-we-there-yet)
|
||||
The updated [`are-we-there-yet`](https://npmjs.com/package/are-we-there-yet)
|
||||
changes how it tracks how complete things are to be much more efficient.
|
||||
The summary is that `are-we-there-yet` was refactored to remove an expensive
|
||||
tree walk.
|
||||
|
2
deps/npm/Makefile
vendored
2
deps/npm/Makefile
vendored
@ -166,7 +166,7 @@ ls-ok:
|
||||
gitclean:
|
||||
git clean -fd
|
||||
|
||||
publish: gitclean ls-ok link doc
|
||||
publish: gitclean ls-ok link doc-clean doc
|
||||
@git push origin :v$(shell npm -v) 2>&1 || true
|
||||
git push origin $(BRANCH) &&\
|
||||
git push origin --tags &&\
|
||||
|
2
deps/npm/README.md
vendored
2
deps/npm/README.md
vendored
@ -141,7 +141,6 @@ you have chosen.
|
||||
## More Docs
|
||||
|
||||
Check out the [docs](https://docs.npmjs.com/),
|
||||
especially the [faq](https://docs.npmjs.com/misc/faq).
|
||||
|
||||
You can use the `npm help` command to read any of them.
|
||||
|
||||
@ -164,6 +163,5 @@ will no doubt tell you to put the output in a gist or email.
|
||||
## SEE ALSO
|
||||
|
||||
* npm(1)
|
||||
* npm-faq(7)
|
||||
* npm-help(1)
|
||||
* npm-index(7)
|
||||
|
577
deps/npm/changelogs/CHANGELOG-2.md
vendored
577
deps/npm/changelogs/CHANGELOG-2.md
vendored
@ -1,3 +1,580 @@
|
||||
### v2.15.2 (2016-03-24):
|
||||
|
||||
It's always nice to see new contributors. 💚
|
||||
|
||||
This week sees another small release, but we're still chugging along on our
|
||||
[Windows efforts](https://github.com/npm/npm/pull/11444).
|
||||
|
||||
There's also some small process changes to our LTS process relatively recently
|
||||
that you might wanna know about! 💁
|
||||
|
||||
For one, the `2.x` branch was removed in favor of just `lts`. If you're making
|
||||
PRs exclusively against npm's LTS, please use that name from now on. `2.x` was
|
||||
deleted.
|
||||
|
||||
Also, [@othiym23](https://github.com/othiym23) put some time into [writing down
|
||||
our LTS process and policy](https://github.com/npm/npm/wiki/LTS). Check it out
|
||||
and ping us if you have questions or comments about it!
|
||||
|
||||
In general, we're trying to make sure all our policy and such for our
|
||||
contributors is written down, and we hope it makes it easier in general for
|
||||
y'all. Forrest is also working on a shiny new Contributor's Guide right now, but
|
||||
we'll link to that in the (near?) future, when it's ready to roll out.
|
||||
|
||||
#### TESTS
|
||||
|
||||
* [`1d0e468`](https://github.com/npm/npm/commit/1d0e468c06c7b8e2b95b7fe874a3399a16d9db74)
|
||||
[#11931](https://github.com/npm/npm/pull/11931)
|
||||
Removes a bunch of old, disabled tests that have just been sitting around,
|
||||
doing nothing.
|
||||
([@othiym23](https://github.com/othiym23))
|
||||
* [`7ae8aa1`](https://github.com/npm/npm/commit/7ae8aa1d9dc47761024f6756114205db3fb2c80b)
|
||||
[#11987](https://github.com/npm/npm/pull/11987)
|
||||
There was a failure in the `outdated-symlink` test caused by using the default
|
||||
registry instead of the mock registry tests.
|
||||
([@yodeyer](https://github.com/yodeyer))
|
||||
|
||||
#### DOCS
|
||||
|
||||
* [`b2649fb`](https://github.com/npm/npm/commit/b2649fb360f239aadef1ab51a580cbf4fdf29722)
|
||||
[#12006](https://github.com/npm/npm/pull/12006)
|
||||
Access was Team and Team was Access, but someone from the community rolled
|
||||
around and corrected it for us. Thanks a bunch!
|
||||
([@yaelz](https://github.com/yaelz))
|
||||
|
||||
### v2.15.1 (2016-03-17):
|
||||
|
||||
#### SECURITY ADVISORY: BEARER TOKEN DISCLOSURE
|
||||
|
||||
This release includes [the fix for a
|
||||
vulnerability](https://github.com/npm/npm/commit/fea8cc92cee02c720b58f95f14d315507ccad401)
|
||||
that could cause the unintentional leakage of bearer tokens.
|
||||
|
||||
Here are details on this vulnerability and how it affects you.
|
||||
|
||||
##### DETAILS
|
||||
|
||||
Since 2014, npm’s registry has used HTTP bearer tokens to authenticate requests
|
||||
from the npm’s command-line interface. A design flaw meant that the CLI was
|
||||
sending these bearer tokens with _every_ request made by logged-in users,
|
||||
regardless of the destination of their request. (The bearers only should have
|
||||
been included for requests made against a registry or registries used for the
|
||||
current install.)
|
||||
|
||||
An attacker could exploit this flaw by setting up an HTTP server that could
|
||||
collect authentication information, then use this authentication information to
|
||||
impersonate the users whose tokens they collected. This impersonation would
|
||||
allow them to do anything the compromised users could do, including publishing
|
||||
new versions of packages.
|
||||
|
||||
With the fixes we’ve released, the CLI will only send bearer tokens with
|
||||
requests made against a registry.
|
||||
|
||||
##### THINK YOU'RE AT RISK? REGENERATE YOUR TOKENS
|
||||
|
||||
If you believe that your bearer token may have been leaked, [invalidate your
|
||||
current npm bearer tokens](https://www.npmjs.com/settings/tokens) and rerun
|
||||
`npm login` to generate new tokens. Keep in mind that this may cause continuous
|
||||
integration builds in services like Travis to break, in which case you’ll need
|
||||
to update the tokens in your CI server’s configuration.
|
||||
|
||||
##### WILL THIS BREAK MY CURRENT SETUP?
|
||||
|
||||
Maybe.
|
||||
|
||||
npm’s CLI team believes that the fix won’t break any existing registry setups.
|
||||
Due to the large number of registry software suites out in the wild, though,
|
||||
it’s possible our change will be breaking in some cases.
|
||||
|
||||
If so, please [file an issue](https://github.com/npm/npm/issues/new) describing
|
||||
the software you’re using and how it broke. Our team will work with you to
|
||||
mitigate the breakage.
|
||||
|
||||
##### CREDIT & THANKS
|
||||
|
||||
Thanks to Mitar, Will White & the team at Mapbox, Max Motovilov, and James
|
||||
Taylor for reporting this vulnerability to npm.
|
||||
|
||||
### BACK TO YOUR REGULARLY SCHEDULED PROGRAMMING
|
||||
|
||||
Aside from that, it's another one of those releases again! Docs and tests, it
|
||||
turns out, have a pretty easy time getting into LTS releases, and boring is
|
||||
exactly how LTS should be. 💁
|
||||
|
||||
#### DOCS
|
||||
|
||||
* [`981c89c`](https://github.com/npm/npm/commit/981c89c8e398ca22ab6bf466123b25728ef6f543)
|
||||
[#11820](https://github.com/npm/npm/pull/11820)
|
||||
The basic explanation for how `npm link` works was a bit confusing, and
|
||||
somewhat incorrect. It should be clearer now.
|
||||
([@rhgb](https://github.com/rhgb))
|
||||
* [`35b2b45`](https://github.com/npm/npm/commit/35b2b45f181dcbfb297f53b577dc1f26efcf3aba)
|
||||
[#11787](https://github.com/npm/npm/pull/11787)
|
||||
The `verison` alias for `npm version` no longer shows up in the command list
|
||||
when you do `npm -h`.
|
||||
([@doug-wade](https://github.com/doug-wade))
|
||||
* [`1c9d00f`](https://github.com/npm/npm/commit/1c9d00f788298a81a8a7293d7dcf430f01bdd7fd)
|
||||
[#11786](https://github.com/npm/npm/pull/11786)
|
||||
Add a comment to the `npm-scope.md` docs about `npm@>=2` being required in
|
||||
order to use scoped packaged.
|
||||
([@doug-wade](https://github.com/doug-wade))
|
||||
* [`7d64fb1`](https://github.com/npm/npm/commit/7d64fb1452d360aa736f31c85d6776ce570b2365)
|
||||
[#11762](https://github.com/npm/npm/pull/11762)
|
||||
Roll back patch that previously advised people to use `--depth Infinity`
|
||||
instead of `--depth 9999`. Just keep using `--depth 9999`.
|
||||
([@GriffinSchneider](https://github.com/GriffinSchneider))
|
||||
|
||||
#### TESTS
|
||||
|
||||
* [`98a9ee4`](https://github.com/npm/npm/commit/98a9ee4773f83994b8eb63c0ff75a9283408ba1a)
|
||||
[#11912](https://github.com/npm/npm/pull/11912)
|
||||
Did you know npm can install itself? `npm install -g npm` is the way to
|
||||
upgrade! Turns out that one of the tests that verified this functionality got
|
||||
rewritten as part of our recent push for better tests, and in the process
|
||||
omitted a detail about *how* the test ran. We're testing that corner case
|
||||
again, now, by moving the install folder to `/tmp`, where the original legacy
|
||||
test ran.
|
||||
([@iarna](https://github.com/iarna))
|
||||
|
||||
### v2.15.0 (2016-03-10):
|
||||
|
||||
#### WHY IS THIS SEMVER-MINOR I THOUGHT THIS WAS LTS
|
||||
|
||||
A brief note about LTS this week!
|
||||
|
||||
npm, as you may know if you're using this `2.x` branch, has an LTS process for
|
||||
releases. We also try and play nice with [Node.js' own LTS release
|
||||
process](https://github.com/nodejs/LTS#lts-plan). That means we generally try to
|
||||
avoid things like minor version bumps on our `2.x` branch (which is also tagged
|
||||
`lts` in the `dist-tag`s).
|
||||
|
||||
That said, we had a minor-bump update recently for `npm@3.8.0` which added a
|
||||
`maxsockets` option to allow users to configure the number of concurrent sockets
|
||||
that npm would keep open at a time -- a setting that has the potential to help a
|
||||
bunch for people with fussy routers or internet connections that aren't very
|
||||
happy with Node.js applications' usual concurrency storm. This change was done
|
||||
to `npm-registry-client`, which we don't have a parallel LTS-tracking branch
|
||||
for.
|
||||
|
||||
After talking it over, we ended up deciding that this was a reasonable enough
|
||||
addition to LTS, even though it's *technically* a `semver-minor` bump, taking
|
||||
into account both its potential for bugfixing (specially on `2.x`!) and the
|
||||
general hassle it would be to maintain another branch for `npm-registry-client`.
|
||||
|
||||
|
||||
* [`6dd61e7`](https://github.com/npm/npm/commit/6dd61e781c145480dc255a3e6a748729868443fd)
|
||||
Expose `maxsockets` config setting from new `npm-registry-client`.
|
||||
([@misterbyrne](https://github.com/misterbyrne))
|
||||
* [`8a021c3`](https://github.com/npm/npm/commit/8a021c35184e665bd1f3f70ae2f478af812ab614)
|
||||
`npm-registry-client@7.1.0`:
|
||||
Adds support for configuring the max number of concurrent sockets, defaulting
|
||||
to `50`.
|
||||
([@iarna](https://github.com/iarna))
|
||||
|
||||
#### DOC PATCH IS HERE TOO
|
||||
|
||||
* [`0ae9f74`](https://github.com/npm/npm/commit/0ae9f740001a1bdf5920bc464cf9e284d5d139f0)
|
||||
[#11748](https://github.com/npm/npm/pull/11748)
|
||||
Add command aliases as a separate section in documentation for npm
|
||||
subcommands.
|
||||
([@watilde](https://github.com/watilde))
|
||||
|
||||
#### DEP UPDATES
|
||||
|
||||
* [`bfc3888`](https://github.com/npm/npm/commit/bfc38887f832f701c16b7ee410c4e0220a90399f)
|
||||
`strip-ansi@3.0.1`
|
||||
([@jbnicolai](https://github.com/jbnicolai))
|
||||
* [`d5f4d51`](https://github.com/npm/npm/commit/d5f4d51a1b7ea78d7431c7ed4fed30200b2622f8)
|
||||
`node-gyp@3.3.1`: Fixes Android generator
|
||||
([@bnoordhuis](https://github.com/bnoordhuis))
|
||||
* [`4119df8`](https://github.com/npm/npm/commit/4119df8aecd2ae57b0492ad8c9a480d900833008)
|
||||
`glob@7.0.3`: Some path-related fixes for Windows.
|
||||
([@isaacs](https://github.com/isaacs))
|
||||
|
||||
### v2.14.22 (2016-03-03):
|
||||
|
||||
This week is all documentation improvements. In case you hadn't noticed, we
|
||||
*love* doc patches. We love them so much, we give socks away if you submit
|
||||
documentation PRs!
|
||||
|
||||
These folks are all getting socks if they ask for them. The socks are
|
||||
super-sweet. Do you have yours yet? 👣
|
||||
|
||||
* [`3f3c7d0`](https://github.com/npm/npm/commit/3f3c7d080f052a5db91ff6091f8b1b13f26b53d6)
|
||||
[#11441](https://github.com/npm/npm/pull/11441)
|
||||
Add a link to the [Contribution
|
||||
Guidelines](https://github.com/npm/npm/wiki/Contributing-Guidelines) to the
|
||||
main npm docs.
|
||||
([@watilde](https://github.com/watilde))
|
||||
* [`9f87bb1`](https://github.com/npm/npm/commit/9f87bb1934acb33b678c17b7827165b17c071a82)
|
||||
[#11441](https://github.com/npm/npm/pull/11441)
|
||||
Remove Google Group email from npm docs about contributing.
|
||||
([@watilde](https://github.com/watilde))
|
||||
* [`93eaab3`](https://github.com/npm/npm/commit/93eaab3ee5ad16c7d90d1a4b38a95403fcf3f0f6)
|
||||
[#11474](https://github.com/npm/npm/pull/11474)
|
||||
Fix an invalid JSON error overlooked in
|
||||
[#11196](https://github.com/npm/npm/pull/11196).
|
||||
([@robludwig](https://github.com/robludwig))
|
||||
* [`a407ca2`](https://github.com/npm/npm/commit/a407ca2bcf6a05117e55cf2ab69376e09094995e)
|
||||
[#11483](https://github.com/npm/npm/pull/11483)
|
||||
Add more details and an example to the documentation for bundledDependencies.
|
||||
([@gnerkus](https://github.com/gnerkus))
|
||||
* [`2c851a2`](https://github.com/npm/npm/commit/2c851a231afd874baa77c42ea5ba539c454ac79c)
|
||||
[#11490](https://github.com/npm/npm/pull/11490)
|
||||
Document the `--registry` flag for `npm search`.
|
||||
([@plumlee](https://github.com/plumlee))
|
||||
|
||||
### v2.14.21 (2016-02-25):
|
||||
|
||||
Good news, everyone! There's a new LTS release with a few shinies here and there!
|
||||
|
||||
#### USE THIS ONE INSTEAD
|
||||
|
||||
We had some cases where the versions of npm and node used in some scripting situations were different than the ideal, or what folks actually expected. These should be particularly helpful to our Windows friends! <3
|
||||
|
||||
* [`02813c5`](https://github.com/npm/npm/commit/02813c55782a9def23f7f1e614edc38c6c88aed3) [#9253](https://github.com/npm/npm/issues/9253) Fix a bug where, when running lifecycle scripts, if the Node.js binary you ran `npm` with wasn't in your `PATH`, `npm` wouldn't use it to run your scripts. ([@segrey](https://github.com/segrey) and [@narqo](https://github.com/narqo))
|
||||
* [`a985dd5`](https://github.com/npm/npm/commit/a985dd50e06ee51ba5544577f977c7440c227ba2) [#11526](https://github.com/npm/npm/pull/11526) Prefer locally installed npm in Git Bash -- previous behavior was to use the global one. This was done previously for other shells, but not for Git Bash. ([@destroyerofbuilds](https://github.com/destroyerofbuilds))
|
||||
|
||||
#### SOCKS FOR THE SOCK GOD
|
||||
|
||||
* [`f961092`](https://github.com/npm/npm/commit/f9610920079d8b88ae464b30007a92c594bd85a8)
|
||||
[#11636.](https://github.com/npm/npm/issues/11636.)
|
||||
Document the `--save-bundle` option for `npm install`.
|
||||
([@datyayu](https://github.com/datyayu))
|
||||
* [`7c908b6`](https://github.com/npm/npm/commit/7c908b618f7123f0a3b860c71eb779e33df35964)
|
||||
[#11644](https://github.com/npm/npm/pull/11644)
|
||||
Add documentation for the `test` directory for packages.
|
||||
([@lewiscowper](https://github.com/lewiscowper))
|
||||
|
||||
#### INTERNAL TEST IMPROVEMENTS
|
||||
|
||||
The npm CLI team's time recently has been sunk into npm's many years of tech debt. Specifically, we've been working on improving the test suite. This isn't user visible, but in future should mean a more stable, easier to contribute to npm. Ordinarily we don't report these kinds of changes in the change log, but I thought I might share this week as this chunk is bigger than usual.
|
||||
|
||||
These patches were previously released for `npm@3`, and then ported back to `npm@2` LTS.
|
||||
|
||||
* [`437c537`](https://github.com/npm/npm/commit/437c537e2be5923c6d2c2753154564ba13db8fd9) [#11613](https://github.com/npm/npm/pull/11613) Fix up one of the tests after rebasing the legacy test rewrite to `npm@2`. ([@zkat](https://github.com/zkat))
|
||||
* [`55abd0c`](https://github.com/npm/npm/commit/55abd0cc20e87a144d33ce2d459f65e7506da576) [#11613](https://github.com/npm/npm/pull/11613) Test that the `package.json` `files` section and `.npmignore` do what they're supposed to. ([@zkat](https://github.com/zkat))
|
||||
* [`a2b99b6`](https://github.com/npm/npm/commit/a2b99b6273ada14b2121ebc0acb7933e630edd9d) [#11613](https://github.com/npm/npm/pull/11613) Test that npm's distribution binary is complete and can be installed and used. ([@iarna](https://github.com/iarna))
|
||||
* [`8a8c36c`](https://github.com/npm/npm/commit/8a8c36ce51166006022e5c5d4f8655bbc458d651) [#11613](https://github.com/npm/npm/pull/11613) Test that environment variables are properly passed into scripts.
|
||||
([@iarna](https://github.com/zkat))
|
||||
* [`a95b550`](https://github.com/npm/npm/commit/a95b5507616bd51e83d7eab5f2337b1aff6480b1) [#11613](https://github.com/npm/npm/pull/11613) Test that we don't leak auth info into the environment. ([@iarna](https://github.com/iarna))
|
||||
* [`a1c1c52`](https://github.com/npm/npm/commit/a1c1c52efeab24f6dba154d054f85d9efc833486) [#11613](https://github.com/npm/npm/pull/11613) Remove all the relatively cryptic legacy tests and creates new tap tests that check the same functionality. The *legacy* tests were tests that were originally a shell script that was ported to javascript early in `npm`'s history. ([@iarna](https:\\github.com/iarna) and [@zkat](https://github.com/zkat))
|
||||
* [`9d89581`](https://github.com/npm/npm/commit/9d895811d3ee70c2e672f3d8fa06574495b5b488) [#11613](https://github.com/npm/npm/pull/11613) `tacks@1.0.9`: Add a package that provides a tool to generate fixtures from folders and, relatedly, a module that an create and tear down filesystem fixtures easily. ([@iarna](https://github.com/iarna))
|
||||
|
||||
### v2.14.20 (2016-02-18):
|
||||
|
||||
Hope y'all are having a nice week! As usual, it's a fairly limited release. The
|
||||
most notable thing is some dependency updates that might help the Node.js CI
|
||||
setup for Windows run a little better, even if we have some work to do on that
|
||||
path length things, still.
|
||||
|
||||
#### WHITTLING AWAY AT PATH LENGTHS
|
||||
|
||||
So for all of you who don't know -- Node.js does, in fact, support long Windows
|
||||
paths. Unfortunately, depending on the tool and the Windows version, a lot of
|
||||
external tooling does not. This means, for example, that some (all?) versions of
|
||||
Windows Explorer *can literally never delete npm from their system entirely
|
||||
because of deeply-nested npm dependencies*. Which is pretty gnarly.
|
||||
|
||||
Incidentally, if you run into that in particularly, you can use
|
||||
[rimraf](npm.im/rimraf) to remove such files 💁.
|
||||
|
||||
The latest victim of this issue was the Node.js CI setup for testing on Windows,
|
||||
which uses some tooling or another that croaks on the usual path length limit
|
||||
for that OS: 255 characters.
|
||||
|
||||
This issue, of course, is largely not a problem as of `npm@3`, with its flat
|
||||
trees, but it still occasionally and viciously bites LTS.
|
||||
|
||||
We've taken another baby step towards alleviating this in this release by
|
||||
updating a couple of dependencies that were preventing `npmlog` from deduping,
|
||||
and then doing a dedupe on that and `gauge`. Hopefully it helps.
|
||||
|
||||
* [`4199551`](https://github.com/npm/npm/commit/41995517e617674710748ab6d262670c96124393)
|
||||
[#11528](https://github.com/npm/npm/pull/11528)
|
||||
`npm-install-checks@1.0.7`: Just updates the version of npmlog so we can
|
||||
dedupe it better.
|
||||
([@zkat](https://github.com/zkat))
|
||||
* [`14d72c7`](https://github.com/npm/npm/commit/14d72c756b89e2d167eb52c1849263dbddcb9f35)
|
||||
[#11552](https://github.com/npm/npm/pull/11552)
|
||||
[#11528](https://github.com/npm/npm/pull/11528)
|
||||
`node-gyp@3.3.0`: AIX support, new `gyp`, update `npmlog` (for the dedupe),
|
||||
adds `--cafile` command line option, and allows configuration of Node.js and
|
||||
io.js mirrors.
|
||||
([@rvagg](https://github.com/rvagg))
|
||||
* [`0453cb9`](https://github.com/npm/npm/commit/0453cb94b33520eb723b7072cd2654b1d0142533)
|
||||
[#11528](https://github.com/npm/npm/pull/11528)
|
||||
Do a `dedupe` on `gauge` to flatten our dependencies a bit more.
|
||||
([@zkat](https://github.com/zkat))
|
||||
|
||||
#### OTHER DEP STUFF
|
||||
|
||||
* [`686c0b3`](https://github.com/npm/npm/commit/686c0b37ec3a7b65f9b3849e1099805e5221c408)
|
||||
`rimraf@2.5.2`: Just updates to glob@7.
|
||||
([@isaacs](https://github.com/isaacs))
|
||||
|
||||
#### @wyze, DOCUMENTATION HERO OF THE PEOPLE, GETS THEIR OWN HEADER
|
||||
|
||||
* [`7232948`](https://github.com/npm/npm/commit/72329484c775376cb40d5b348f453eaaf2f0b821)
|
||||
[#11416](https://github.com/npm/npm/pull/11416)
|
||||
Logout docs were using a section copy-pasted from the adduser docs.
|
||||
([@wyze](https://github.com/wyze))
|
||||
* [`922b33a`](https://github.com/npm/npm/commit/922b33aba4362e1e90f42e9348f061a1cc73eafb)
|
||||
[#11414](https://github.com/npm/npm/pull/11414)
|
||||
Add colon for consistency.
|
||||
([@wyze](https://github.com/wyze))
|
||||
|
||||
### v2.14.19 (2016-02-11):
|
||||
|
||||
Really tiny micro-release this week! The main thing to note is a dependency
|
||||
update that means we no longer have `graceful-fs@3` in our dependency tree. This
|
||||
has some implications for being able to run on future Node.js releases, so
|
||||
better to get this out the door. 😁
|
||||
|
||||
#### DEPS
|
||||
|
||||
* [`a556e0f`](https://github.com/npm/npm/commit/a556e0f9dcb5d7b44224ba9c16c9d0dc6c8d2532)
|
||||
`cmd-shim@2.0.2`: Final straggler using `graceful-fs@<4`.
|
||||
([@ForbesLindesay](https://github.com/ForbesLindesay))
|
||||
|
||||
#### DOCS
|
||||
|
||||
* [`69a2d59`](https://github.com/npm/npm/commit/69a2d599bf0cba674ee268483e9bd5c14333b89f)
|
||||
[#11391](https://github.com/npm/npm/pull/11391)
|
||||
Fixed versions of `shrinkwrap.json` in examples in documentation for `npm
|
||||
shrinkwrap`, which did not quite match up.
|
||||
([@xcatliu](https://github.com/xcatliu))
|
||||
|
||||
### v2.14.18 (2016-02-04):
|
||||
|
||||
Clearly our docs are perfect after all those wonderful PRs, 'cause this week's
|
||||
gonna be all about dependency updates. Note: There is a small security-related
|
||||
fix included here!
|
||||
|
||||
#### SECURITY-RELATED DEPENDENCY UPDATE
|
||||
|
||||
* [`5c095ef`](https://github.com/npm/npm/commit/5c095eff8dc006980d4d083f2007e4dacff23be3)
|
||||
[#11341](https://github.com/npm/npm/pull/11341)
|
||||
`request@2.69.0`: Includes security-related dependency updates involving
|
||||
`hawk` and `is-my-json-valid`
|
||||
([@remy](https://github.com/remy) and [@simov](https://github.com/simov))
|
||||
|
||||
#### OTHER DEPENDENCY UPDATES
|
||||
|
||||
* [`f9c2668`](https://github.com/npm/npm/commit/f9c2668ca3e6e2602d91250ce61280e5e12d0a00)
|
||||
`which@1.2.4`
|
||||
([@isaacs](https://github.com/isaacs))
|
||||
* [`2907c43`](https://github.com/npm/npm/commit/2907c43ad4ef87e5f730c2576f680d6837fcbad0)
|
||||
`spdx-license-ids@1.2.0`
|
||||
([@shinnn](https://github.com/shinnn))
|
||||
* [`7734069`](https://github.com/npm/npm/commit/773406960bf7f4a87b2ecb6ebf593c62d0e9f95d)
|
||||
`rimraf@2.5.1`
|
||||
([@isaacs](https://github.com/isaacs))
|
||||
* [`f4b39a7`](https://github.com/npm/npm/commit/f4b39a7dd5e1335d92aa22c46d99abb33f271b8b)
|
||||
`retry@0.9.0`
|
||||
([@tim-kos](https://github.com/tim-kos))
|
||||
* [`ded1e7a`](https://github.com/npm/npm/commit/ded1e7a1c9c7bec29bb7c30a8f85546670e75b56)
|
||||
Nest `retry@0.8.0` inside `npm-registry-client` to prevent invalid
|
||||
dependency issue until the latter gets a dependency update.
|
||||
([@zkat](https://github.com/zkat))
|
||||
* [`ab9f867`](https://github.com/npm/npm/commit/ab9f8679f9687f91ad03adaab6211a897aeebbae)
|
||||
`read-package-json@2.0.3`
|
||||
([@iarna](https://github.com/iarna))
|
||||
* [`b638c41`](https://github.com/npm/npm/commit/b638c41607bb936b9eaaceba2aeeda1d34e3a9b2)
|
||||
`npmlog@2.0.2`
|
||||
([@iarna](https://github.com/iarna))
|
||||
* [`49f34af`](https://github.com/npm/npm/commit/49f34af463a674359269025d8438feb6a7c69960)
|
||||
`init-package-json@1.9.3`
|
||||
([@iarna](https://github.com/iarna))
|
||||
* [`2305dab`](https://github.com/npm/npm/commit/2305dab4e7bff09bb7686cec653cf1e663dbf15d)
|
||||
`graceful-fs@4.1.3`: Fixed `.close()` not being patched.
|
||||
([@isaacs](https://github.com/isaacs))
|
||||
* [`18496d9`](https://github.com/npm/npm/commit/18496d9a0fff94e3652655998e8333056aa52b15)
|
||||
`fs-write-stream-atomic@1.0.8`
|
||||
([@iarna](https://github.com/iarna))
|
||||
* [`6637bc7`](https://github.com/npm/npm/commit/6637bc7a0e194d82554cd7c91e1794018fef5943)
|
||||
`config-chain@1.1.10`
|
||||
([@dominictarr](https://github.com/dominictarr))
|
||||
* [`4222bad`](https://github.com/npm/npm/commit/4222badffed9e9edacea6a8a96a99a164d376158)
|
||||
`columnify@1.5.4`
|
||||
([@timoxley](https://github.com/timoxley))
|
||||
* [`df9016f`](https://github.com/npm/npm/commit/df9016f327a2a9ce492ebc75b882b03069438e13)
|
||||
`ansi@0.3.1`: Added a license file.
|
||||
([@TooTallNate](https://github.com/TooTallNate))
|
||||
|
||||
### v2.14.17 (2016-01-28):
|
||||
|
||||
Another week, another small LTS release!
|
||||
|
||||
#### BETTER ERROR REPORTING YAY
|
||||
|
||||
So as it turns out, when stuff goes wrong, it's actually nice to give people a
|
||||
better clue rather than just say "oh well 😏".
|
||||
|
||||
* [`5b8ccb9`](https://github.com/npm/npm/commit/5b8ccb91cf11b4edb463609cd4ed1dee84ed4db0)
|
||||
[#11289](https://github.com/npm/npm/pull/11289)
|
||||
There is an obscure feature that lets you monkey-patch npm when it starts up.
|
||||
If the module being required with this feature failed, it would previous just
|
||||
make npm error out– this reduces that to a warning.
|
||||
([@evanlucas](https://github.com/evanlucas))
|
||||
* [`556e42a`](https://github.com/npm/npm/commit/556e42ac6bab078722ddc1dc6cce4428d001133b)
|
||||
[#11300](https://github.com/npm/npm/pull/11300)
|
||||
Report symlinked packages as 'linked' in the output for `npm outdated`.
|
||||
([@halhenke](https://github.com/halhenke))
|
||||
* [`3842317`](https://github.com/npm/npm/commit/3842317583e0ea2eca78e39aa03f5bc06ba21de7)
|
||||
[#11290](https://github.com/npm/npm/pull/11290)
|
||||
Suppress warnings about pre-release node versions. This should get node's CI
|
||||
passing on non-Windows platforms without needing to modify the node version to
|
||||
get rid of the pre-release suffix.
|
||||
([@iarna](https://github.com/iarna))
|
||||
|
||||
#### EVERYONE WANTS THOSE NPM SOCKS, GEEZE
|
||||
|
||||
Did you know that you can get npm socks for contributing to our docs? I bet
|
||||
these people do, and now so do you!
|
||||
|
||||
* [`dcde451`](https://github.com/npm/npm/commit/dcde451cb85a6ca08acc6ef45782c652f1d8fc89)
|
||||
[#11232](https://github.com/npm/npm/pull/11232)
|
||||
Update automatically included/excluded packages in `package.json`.
|
||||
([@jscissr](https://github.com/jscissr))
|
||||
* [`e3f8d5b`](https://github.com/npm/npm/commit/e3f8d5be5ac5ec1d72db42f7abf50cc4a8c5935c)
|
||||
[#11273](https://github.com/npm/npm/pull/11273)
|
||||
Add an example for `npm view <pkg> versions`.
|
||||
([@vedatmahir](https://github.com/vedatmahir))
|
||||
* [`6a06ef2`](https://github.com/npm/npm/commit/6a06ef2252748089f0013de951f2d06160b90306)
|
||||
[#11272](https://github.com/npm/npm/pull/11272)
|
||||
Fix a typo in `npm-update.md`.
|
||||
([@jonathanp](https://github.com/jonathanp))
|
||||
* [`2515ff1`](https://github.com/npm/npm/commit/2515ff1de28f0b261fb25c79a66bd762a65961c4)
|
||||
[#11215](https://github.com/npm/npm/pull/11215)
|
||||
Correct small thinko in docs for SPDX expressions.
|
||||
([@kemitchell](https://github.com/kemitchell))
|
||||
* [`70f897b`](https://github.com/npm/npm/commit/70f897b03da9a5d5d4fd34614e9ee40e6f9e9653)
|
||||
[#11196](https://github.com/npm/npm/pull/11196)
|
||||
Make JSON snippets valid JSON in `npm update` docs.
|
||||
([@s100](https://github.com/s100))
|
||||
|
||||
### v2.14.16 (2016-01-21):
|
||||
|
||||
Good to see you all again! It's been a while since we had an LTS release, and
|
||||
the team continues to work hard to both get the issue tracker under control, and
|
||||
get our test suite to be awesome and reliable.
|
||||
|
||||
This is also the first LTS release of this year.
|
||||
|
||||
We're gonna have an interesting time -- most of our focus this year will be
|
||||
around stability and maintainability of the CLI, so you might actually end up
|
||||
seeing a number of updates even over here, just for the sake of making sure
|
||||
we're stable, that bugs get fixed, and tests have proper coverage.
|
||||
|
||||
What better way to start this effort, then, than getting Travis tests green, fix
|
||||
a few things here and there, and tweak a bunch of documentation? 😁
|
||||
|
||||
#### FIX ALL THE BUGS AND TWEAK ALL THE THINGS
|
||||
|
||||
* [`24b13fb`](https://github.com/npm/npm/commit/24b13fbc57d34db1d5b0a37bcca122c00deba978)
|
||||
[#11158](https://github.com/npm/npm/pull/11158)
|
||||
Fix custom node-gyp env var quoting on Windows.
|
||||
([@orangemocha](https://github.com/orangemocha))
|
||||
* [`e2503f2`](https://github.com/npm/npm/commit/e2503f2be40157b05a9c500ec3b5d16090ffee50)
|
||||
[#11142](https://github.com/npm/npm/pull/11142)
|
||||
Fix race condition with `correctMkdir` in the cache directory.
|
||||
([@Jimbly](https://github.com/Jimbly))
|
||||
|
||||
* [`5c0e4c4`](https://github.com/npm/npm/commit/5c0e4c45a29d774ab729e86044377d4e5e424252)
|
||||
[#10940](https://github.com/npm/npm/pull/10940)
|
||||
Ignore failures replacing `package.json`. writeFileAtomic is not atomic in
|
||||
Windows, it fails if the file is being accessed concurrently.
|
||||
([@orangemocha](https://github.com/orangemocha))
|
||||
* [`2c44d8d`](https://github.com/npm/npm/commit/2c44d8dc8c267d5e054d0175ce2f4750f0986463)
|
||||
[#10903](https://github.com/npm/npm/pull/10903)
|
||||
Add tests for `npm adduser --scope`.
|
||||
([@ekmartin](https://github.com/ekmartin))
|
||||
* [`4cb25d0`](https://github.com/npm/npm/commit/4cb25d0fed5c7792dfd1aec891380ecc1f8a5761)
|
||||
[#10903](https://github.com/npm/npm/pull/10903)
|
||||
Add a message informing users when they have been successfully logged in.
|
||||
([@ekmartin](https://github.com/ekmartin))
|
||||
* [`fe3ec6d`](https://github.com/npm/npm/commit/fe3ec6d6658262054c0c19c55373c21e84ab9f17)
|
||||
[#10628](https://github.com/npm/npm/pull/10628)
|
||||
Tell users how to open an issue with a package that has errored.
|
||||
([@trodrigues](https://github.com/trodrigues))
|
||||
|
||||
#### DOCS DOCS DOCS
|
||||
|
||||
We got a TON of lovely documentation patches, too! Thanks all for submitting!
|
||||
|
||||
* [`22482a1`](https://github.com/npm/npm/commit/22482a1f22079d72c3f8ca55c2f0c153bdd024c0)
|
||||
[#11188](https://github.com/npm/npm/pull/11188)
|
||||
Briefly explain what's included when you publish.
|
||||
([@beaugunderson](https://github.com/beaugunderson))
|
||||
* [`fa47724`](https://github.com/npm/npm/commit/fa4772438df0c66a19309dd1c1a3ce43cbee5461)
|
||||
[#11150](https://github.com/npm/npm/pull/11150)
|
||||
Advise use of `--depth Infinity` instead of `--depth 9999` in `npm update`.
|
||||
([@halhenke](https://github.com/halhenke))
|
||||
* [`248ddfe`](https://github.com/npm/npm/commit/248ddfe8f7ddd3318e14bf61de41cab4a638c8a3)
|
||||
[#11130](https://github.com/npm/npm/pull/11130)
|
||||
Nuke "using npm programmatically" section from README. The programmatic npm
|
||||
API is unsupported, and is not guaranteed not to break in non-major versions.
|
||||
Removing this section so newcomers aren't encouraged to discover or use it.
|
||||
([@ljharb](https://github.com/ljharb))
|
||||
* [`ae9c452`](https://github.com/npm/npm/commit/ae9c4521222d60ab4a69c19fee5e361c62f41fae)
|
||||
[#11128](https://github.com/npm/npm/pull/11128)
|
||||
Add link to local paths section indocs for `package.json`.
|
||||
([@orangejulius](https://github.com/orangejulius))
|
||||
* [`663a8c6`](https://github.com/npm/npm/commit/663a8c6b4b1647f9b86c15ef32e30023edc8c060)
|
||||
[#11044](https://github.com/npm/npm/pull/11044)
|
||||
Update default value documentation for the color option in npm's config.
|
||||
([@scottaddie](https://github.com/scottaddie))
|
||||
* [`5c1dda0`](https://github.com/npm/npm/commit/5c1dda0d3a18b2954872dba33fbc696ff0700ffe)
|
||||
[#11037](https://github.com/npm/npm/pull/11037)
|
||||
Correct the name property max length constraint verbiage.
|
||||
([@scottaddie](https://github.com/scottaddie))
|
||||
* [`8288365`](https://github.com/npm/npm/commit/8288365d08e97fa3a5b0d31703c015a8be49e07f)
|
||||
[#10990](https://github.com/npm/npm/pull/10990)
|
||||
Update folder docs to reflect that process.installPrefix was removed as of
|
||||
0.8.x.
|
||||
([@jeffmcmahan](https://github.com/jeffmcmahan))
|
||||
* [`61d63fa`](https://github.com/npm/npm/commit/61d63fa22c4f09742180c2de460a4ffb6c32738e)
|
||||
[#10790](https://github.com/npm/npm/pull/10790)
|
||||
Clarify that `npm install foo` is the same as `npm install foo@latest` now.
|
||||
([@cvrebert](https://github.com/cvrebert))
|
||||
* [`442c920`](https://github.com/npm/npm/commit/442c9207f375354c91d36df8711ba2d33e1c97f3)
|
||||
[#10789](https://github.com/npm/npm/pull/10789)
|
||||
Link over to `npm-dist-tag(1)` in `npm install` docs when they talk about the
|
||||
`pkg@<tag>` syntax.
|
||||
([@cvrebert](https://github.com/cvrebert))
|
||||
* [`dca7a5e`](https://github.com/npm/npm/commit/dca7a5e2be3bfa306a870a123707d35c732406c0)
|
||||
[#10788](https://github.com/npm/npm/pull/10788)
|
||||
Link to tag docs in docs for `npm publish --tag`.
|
||||
([@cvrebert](https://github.com/cvrebert))
|
||||
* [`a72904e`](https://github.com/npm/npm/commit/a72904e8d4ab1d43ae8150fbe3f6468b0cbb1efd)
|
||||
[#10787](https://github.com/npm/npm/pull/10787)
|
||||
Explain why the `latest` tag matters.
|
||||
([@cvrebert](https://github.com/cvrebert))
|
||||
* [`9d0697a`](https://github.com/npm/npm/commit/9d0697a534046df7efda32170014041bbc1f4e7d)
|
||||
[#10785](https://github.com/npm/npm/pull/10785)
|
||||
Replace some quite marks in `npm dist-tag` docs for the sake of consistency.
|
||||
([@cvrebert](https://github.com/cvrebert))
|
||||
|
||||
#### I REALLY LIKE GREEN. CAN YOU TELL?
|
||||
|
||||
So Travis is all green now on `npm@2`, thanks to the removal of nock and a few
|
||||
other test suite tweaks. This is a fantastic step towards making sure we can all
|
||||
have confidence in our test suite! 🎉
|
||||
|
||||
* [`64995be`](https://github.com/npm/npm/commit/64995be6d874356b15c136f9867302d805dfe1e9) [`75ab216`](https://github.com/npm/npm/commit/75ab2164cf79e28ac7f7ebe714f3c5aee99c6626) [`a9f6fe9`](https://github.com/npm/npm/commit/a9f6fe9dc558f17c4a7b9eb83329ac080f7df4b7) [`649c193`](https://github.com/npm/npm/commit/649c193adadf714c2819837f9372a29d724a5ec0) [`94cb05e`](https://github.com/npm/npm/commit/94cb05eaa9e5ad6675cf15c4ac0a44fbdde05900) [`6541690`](https://github.com/npm/npm/commit/65416907008061ac5a5f66b1630a57776803b526) [`255be6f`](https://github.com/npm/npm/commit/255be6f5bca9e3d216f3a5cbdf6714c6c9fcf132) [`9e84fa4`](https://github.com/npm/npm/commit/9e84fa43c49d04cf86ca1678e2a61412f5559cb9) [`8a587b0`](https://github.com/npm/npm/commit/8a587b0c1696ae7302891fa6355fc3e8670e00d3) [`bf812a5`](https://github.com/npm/npm/commit/bf812a54e497a573493346399798aa0b9373ac24)
|
||||
[#10903](https://github.com/npm/npm/pull/10903)
|
||||
Get rid of nock from tests, and get Travis green.
|
||||
([@zkat](https://github.com/zkat) and [@iarna](https://github.com/iarna))
|
||||
* [`70a5310`](https://github.com/npm/npm/commit/70a5310712c6666e753ca8f3bfff4a780ec6292d)
|
||||
`npm-registry-couchapp@2.6.12`:
|
||||
Better 0.8 compatibility, and ability to run in travis docker stuff. This
|
||||
means the test suite should run a lot faster, too!
|
||||
([@iarna](https://github.com/iarna))
|
||||
* [`28fae39`](https://github.com/npm/npm/commit/28fae399212eda5554e6c0ffd8c9591144ab7b9d)
|
||||
Get rid of sudo, for Travis!
|
||||
([@zkat](https://github.com/zkat))
|
||||
|
||||
### v2.14.15 (2015-12-10):
|
||||
|
||||
Did you know that Bob Ross reached the rank of master sergeant in the US Air
|
||||
|
1
deps/npm/doc/cli/npm-completion.md
vendored
1
deps/npm/doc/cli/npm-completion.md
vendored
@ -28,5 +28,4 @@ completions based on the arguments.
|
||||
## SEE ALSO
|
||||
|
||||
* npm-developers(7)
|
||||
* npm-faq(7)
|
||||
* npm(1)
|
||||
|
1
deps/npm/doc/cli/npm-help-search.md
vendored
1
deps/npm/doc/cli/npm-help-search.md
vendored
@ -31,5 +31,4 @@ If false, then help-search will just list out the help topics found.
|
||||
## SEE ALSO
|
||||
|
||||
* npm(1)
|
||||
* npm-faq(7)
|
||||
* npm-help(1)
|
||||
|
1
deps/npm/doc/cli/npm-help.md
vendored
1
deps/npm/doc/cli/npm-help.md
vendored
@ -29,7 +29,6 @@ Set to `"browser"` to view html help content in the default web browser.
|
||||
|
||||
* npm(1)
|
||||
* README
|
||||
* npm-faq(7)
|
||||
* npm-folders(5)
|
||||
* npm-config(1)
|
||||
* npm-config(7)
|
||||
|
3
deps/npm/doc/cli/npm-install.md
vendored
3
deps/npm/doc/cli/npm-install.md
vendored
@ -271,6 +271,9 @@ global `node_modules` folder. Only your direct dependencies will show in
|
||||
`node_modules` and everything they depend on will be flattened in their
|
||||
`node_modules` folders. This obviously will eliminate some deduping.
|
||||
|
||||
The `--ignore-scripts` argument will cause npm to not execute any
|
||||
scripts defined in the package.json. See `npm-scripts(7)`.
|
||||
|
||||
The `--legacy-bundling` argument will cause npm to install the package such
|
||||
that versions of npm prior to 1.4, such as the one included with node 0.8,
|
||||
can install the package. This eliminates all automatic deduping.
|
||||
|
1
deps/npm/doc/cli/npm-link.md
vendored
1
deps/npm/doc/cli/npm-link.md
vendored
@ -65,7 +65,6 @@ include that scope, e.g.
|
||||
## SEE ALSO
|
||||
|
||||
* npm-developers(7)
|
||||
* npm-faq(7)
|
||||
* package.json(5)
|
||||
* npm-install(1)
|
||||
* npm-folders(5)
|
||||
|
1
deps/npm/doc/cli/npm.md
vendored
1
deps/npm/doc/cli/npm.md
vendored
@ -156,7 +156,6 @@ will no doubt tell you to put the output in a gist or email.
|
||||
## SEE ALSO
|
||||
|
||||
* npm-help(1)
|
||||
* npm-faq(7)
|
||||
* README
|
||||
* package.json(5)
|
||||
* npm-install(1)
|
||||
|
1
deps/npm/doc/files/npm-folders.md
vendored
1
deps/npm/doc/files/npm-folders.md
vendored
@ -204,7 +204,6 @@ cannot be found elsewhere. See `package.json(5)` for more information.
|
||||
|
||||
## SEE ALSO
|
||||
|
||||
* npm-faq(7)
|
||||
* package.json(5)
|
||||
* npm-install(1)
|
||||
* npm-pack(1)
|
||||
|
6
deps/npm/doc/files/package.json.md
vendored
6
deps/npm/doc/files/package.json.md
vendored
@ -206,6 +206,7 @@ Conversely, some files are always ignored:
|
||||
* `._*`
|
||||
* `npm-debug.log`
|
||||
* `.npmrc`
|
||||
* `node_modules`
|
||||
|
||||
## main
|
||||
|
||||
@ -654,8 +655,8 @@ are capable of properly installing your program. For example:
|
||||
|
||||
{ "engines" : { "npm" : "~1.0.20" } }
|
||||
|
||||
Note that, unless the user has set the `engine-strict` config flag, this
|
||||
field is advisory only.
|
||||
Unless the user has set the `engine-strict` config flag, this
|
||||
field is advisory only will produce warnings when your package is installed as a dependency.
|
||||
|
||||
## engineStrict
|
||||
|
||||
@ -756,7 +757,6 @@ npm will default some values based on package contents.
|
||||
* npm-config(1)
|
||||
* npm-config(7)
|
||||
* npm-help(1)
|
||||
* npm-faq(7)
|
||||
* npm-install(1)
|
||||
* npm-publish(1)
|
||||
* npm-uninstall(1)
|
||||
|
1
deps/npm/doc/misc/npm-coding-style.md
vendored
1
deps/npm/doc/misc/npm-coding-style.md
vendored
@ -189,5 +189,4 @@ Boolean objects are verboten.
|
||||
## SEE ALSO
|
||||
|
||||
* npm-developers(7)
|
||||
* npm-faq(7)
|
||||
* npm(1)
|
||||
|
1
deps/npm/doc/misc/npm-developers.md
vendored
1
deps/npm/doc/misc/npm-developers.md
vendored
@ -211,7 +211,6 @@ Tell the world how easy it is to install your program!
|
||||
|
||||
## SEE ALSO
|
||||
|
||||
* npm-faq(7)
|
||||
* npm(1)
|
||||
* npm-init(1)
|
||||
* package.json(5)
|
||||
|
4
deps/npm/doc/misc/npm-orgs.md
vendored
4
deps/npm/doc/misc/npm-orgs.md
vendored
@ -17,8 +17,8 @@ The developer will be able to access packages based on the teams they are on. Ac
|
||||
|
||||
There are two main commands:
|
||||
|
||||
1. `npm team` see npm-access(1) for more details
|
||||
2. `npm access` see npm-team(1) for more details
|
||||
1. `npm team` see npm-team(1) for more details
|
||||
2. `npm access` see npm-access(1) for more details
|
||||
|
||||
## Team Admins create teams
|
||||
|
||||
|
6
deps/npm/html/doc/README.html
vendored
6
deps/npm/html/doc/README.html
vendored
@ -93,8 +93,7 @@ must remove them yourself manually if you want them gone. Note that
|
||||
this means that future npm installs will not remember the settings that
|
||||
you have chosen.</p>
|
||||
<h2 id="more-docs">More Docs</h2>
|
||||
<p>Check out the <a href="https://docs.npmjs.com/">docs</a>,
|
||||
especially the <a href="https://docs.npmjs.com/misc/faq">faq</a>.</p>
|
||||
<p>Check out the <a href="https://docs.npmjs.com/">docs</a>,</p>
|
||||
<p>You can use the <code>npm help</code> command to read any of them.</p>
|
||||
<p>If you're a developer, and you want to use npm to publish your program,
|
||||
you should <a href="https://docs.npmjs.com/misc/developers">read this</a></p>
|
||||
@ -111,7 +110,6 @@ will no doubt tell you to put the output in a gist or email.</p>
|
||||
<h2 id="see-also">SEE ALSO</h2>
|
||||
<ul>
|
||||
<li><a href="cli/npm.html">npm(1)</a></li>
|
||||
<li><a href="misc/npm-faq.html">npm-faq(7)</a></li>
|
||||
<li><a href="cli/npm-help.html">npm-help(1)</a></li>
|
||||
<li><a href="misc/npm-index.html">npm-index(7)</a></li>
|
||||
</ul>
|
||||
@ -127,5 +125,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 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>
|
||||
<p id="footer"><a href="../doc/README.html">README</a> — npm@3.8.3</p>
|
||||
<p id="footer"><a href="../doc/README.html">README</a> — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-access.html
vendored
2
deps/npm/html/doc/cli/npm-access.html
vendored
@ -84,5 +84,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 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>
|
||||
<p id="footer">npm-access — npm@3.8.3</p>
|
||||
<p id="footer">npm-access — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-adduser.html
vendored
2
deps/npm/html/doc/cli/npm-adduser.html
vendored
@ -72,5 +72,5 @@ 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 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>
|
||||
<p id="footer">npm-adduser — npm@3.8.3</p>
|
||||
<p id="footer">npm-adduser — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-bin — npm@3.8.3</p>
|
||||
<p id="footer">npm-bin — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-bugs.html
vendored
2
deps/npm/html/doc/cli/npm-bugs.html
vendored
@ -55,5 +55,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 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>
|
||||
<p id="footer">npm-bugs — npm@3.8.3</p>
|
||||
<p id="footer">npm-bugs — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-build.html
vendored
2
deps/npm/html/doc/cli/npm-build.html
vendored
@ -40,5 +40,5 @@ directly, run:</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 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>
|
||||
<p id="footer">npm-build — npm@3.8.3</p>
|
||||
<p id="footer">npm-build — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-bundle — npm@3.8.3</p>
|
||||
<p id="footer">npm-bundle — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-cache — npm@3.8.3</p>
|
||||
<p id="footer">npm-cache — npm@3.8.6</p>
|
||||
|
||||
|
3
deps/npm/html/doc/cli/npm-completion.html
vendored
3
deps/npm/html/doc/cli/npm-completion.html
vendored
@ -29,7 +29,6 @@ completions based on the arguments.</p>
|
||||
<h2 id="see-also">SEE ALSO</h2>
|
||||
<ul>
|
||||
<li><a href="../misc/npm-developers.html">npm-developers(7)</a></li>
|
||||
<li><a href="../misc/npm-faq.html">npm-faq(7)</a></li>
|
||||
<li><a href="../cli/npm.html">npm(1)</a></li>
|
||||
</ul>
|
||||
|
||||
@ -44,5 +43,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 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>
|
||||
<p id="footer">npm-completion — npm@3.8.3</p>
|
||||
<p id="footer">npm-completion — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-config.html
vendored
2
deps/npm/html/doc/cli/npm-config.html
vendored
@ -67,5 +67,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 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>
|
||||
<p id="footer">npm-config — npm@3.8.3</p>
|
||||
<p id="footer">npm-config — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-dedupe.html
vendored
2
deps/npm/html/doc/cli/npm-dedupe.html
vendored
@ -61,5 +61,5 @@ result in new modules being installed.</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 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>
|
||||
<p id="footer">npm-dedupe — npm@3.8.3</p>
|
||||
<p id="footer">npm-dedupe — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-deprecate — npm@3.8.3</p>
|
||||
<p id="footer">npm-deprecate — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-dist-tag.html
vendored
2
deps/npm/html/doc/cli/npm-dist-tag.html
vendored
@ -87,5 +87,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 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>
|
||||
<p id="footer">npm-dist-tag — npm@3.8.3</p>
|
||||
<p id="footer">npm-dist-tag — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-docs — npm@3.8.3</p>
|
||||
<p id="footer">npm-docs — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-edit — npm@3.8.3</p>
|
||||
<p id="footer">npm-edit — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-explore — npm@3.8.3</p>
|
||||
<p id="footer">npm-explore — npm@3.8.6</p>
|
||||
|
||||
|
3
deps/npm/html/doc/cli/npm-help-search.html
vendored
3
deps/npm/html/doc/cli/npm-help-search.html
vendored
@ -31,7 +31,6 @@ where the terms were found in the documentation.</p>
|
||||
<h2 id="see-also">SEE ALSO</h2>
|
||||
<ul>
|
||||
<li><a href="../cli/npm.html">npm(1)</a></li>
|
||||
<li><a href="../misc/npm-faq.html">npm-faq(7)</a></li>
|
||||
<li><a href="../cli/npm-help.html">npm-help(1)</a></li>
|
||||
</ul>
|
||||
|
||||
@ -46,5 +45,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 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>
|
||||
<p id="footer">npm-help-search — npm@3.8.3</p>
|
||||
<p id="footer">npm-help-search — npm@3.8.6</p>
|
||||
|
||||
|
3
deps/npm/html/doc/cli/npm-help.html
vendored
3
deps/npm/html/doc/cli/npm-help.html
vendored
@ -30,7 +30,6 @@ matches are equivalent to specifying a topic name.</p>
|
||||
<ul>
|
||||
<li><a href="../cli/npm.html">npm(1)</a></li>
|
||||
<li><a href="../../doc/README.html">README</a></li>
|
||||
<li><a href="../misc/npm-faq.html">npm-faq(7)</a></li>
|
||||
<li><a href="../files/npm-folders.html">npm-folders(5)</a></li>
|
||||
<li><a href="../cli/npm-config.html">npm-config(1)</a></li>
|
||||
<li><a href="../misc/npm-config.html">npm-config(7)</a></li>
|
||||
@ -51,5 +50,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 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>
|
||||
<p id="footer">npm-help — npm@3.8.3</p>
|
||||
<p id="footer">npm-help — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-init — npm@3.8.3</p>
|
||||
<p id="footer">npm-init — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-install-test.html
vendored
2
deps/npm/html/doc/cli/npm-install-test.html
vendored
@ -42,4 +42,4 @@ takes exactly the same arguments as <code>npm install</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 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>
|
||||
<p id="footer">npm-install-test — npm@3.8.3</p>
|
||||
<p id="footer">npm-install-test — npm@3.8.6</p>
|
||||
|
4
deps/npm/html/doc/cli/npm-install.html
vendored
4
deps/npm/html/doc/cli/npm-install.html
vendored
@ -217,6 +217,8 @@ your local <code>node_modules</code> folder with the same layout it uses with th
|
||||
global <code>node_modules</code> folder. Only your direct dependencies will show in
|
||||
<code>node_modules</code> and everything they depend on will be flattened in their
|
||||
<code>node_modules</code> folders. This obviously will eliminate some deduping.</p>
|
||||
<p>The <code>--ignore-scripts</code> argument will cause npm to not execute any
|
||||
scripts defined in the package.json. See <code><a href="../misc/npm-scripts.html">npm-scripts(7)</a></code>.</p>
|
||||
<p>The <code>--legacy-bundling</code> argument will cause npm to install the package such
|
||||
that versions of npm prior to 1.4, such as the one included with node 0.8,
|
||||
can install the package. This eliminates all automatic deduping.</p>
|
||||
@ -310,5 +312,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 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>
|
||||
<p id="footer">npm-install — npm@3.8.3</p>
|
||||
<p id="footer">npm-install — npm@3.8.6</p>
|
||||
|
||||
|
3
deps/npm/html/doc/cli/npm-link.html
vendored
3
deps/npm/html/doc/cli/npm-link.html
vendored
@ -54,7 +54,6 @@ include that scope, e.g.</p>
|
||||
</code></pre><h2 id="see-also">SEE ALSO</h2>
|
||||
<ul>
|
||||
<li><a href="../misc/npm-developers.html">npm-developers(7)</a></li>
|
||||
<li><a href="../misc/npm-faq.html">npm-faq(7)</a></li>
|
||||
<li><a href="../files/package.json.html">package.json(5)</a></li>
|
||||
<li><a href="../cli/npm-install.html">npm-install(1)</a></li>
|
||||
<li><a href="../files/npm-folders.html">npm-folders(5)</a></li>
|
||||
@ -74,5 +73,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 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>
|
||||
<p id="footer">npm-link — npm@3.8.3</p>
|
||||
<p id="footer">npm-link — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-logout.html
vendored
2
deps/npm/html/doc/cli/npm-logout.html
vendored
@ -51,5 +51,5 @@ it takes precedence.</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 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>
|
||||
<p id="footer">npm-logout — npm@3.8.3</p>
|
||||
<p id="footer">npm-logout — npm@3.8.6</p>
|
||||
|
||||
|
4
deps/npm/html/doc/cli/npm-ls.html
vendored
4
deps/npm/html/doc/cli/npm-ls.html
vendored
@ -21,7 +21,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
|
||||
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>
|
||||
<pre><code>npm@3.8.3 /path/to/npm
|
||||
<pre><code>npm@3.8.6 /path/to/npm
|
||||
└─┬ init-package-json@0.0.4
|
||||
└── promzard@0.1.5
|
||||
</code></pre><p>It will print out extraneous, missing, and invalid packages.</p>
|
||||
@ -104,5 +104,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 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>
|
||||
<p id="footer">npm-ls — npm@3.8.3</p>
|
||||
<p id="footer">npm-ls — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-outdated.html
vendored
2
deps/npm/html/doc/cli/npm-outdated.html
vendored
@ -116,5 +116,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 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>
|
||||
<p id="footer">npm-outdated — npm@3.8.3</p>
|
||||
<p id="footer">npm-outdated — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-owner.html
vendored
2
deps/npm/html/doc/cli/npm-owner.html
vendored
@ -51,5 +51,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 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>
|
||||
<p id="footer">npm-owner — npm@3.8.3</p>
|
||||
<p id="footer">npm-owner — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-pack — npm@3.8.3</p>
|
||||
<p id="footer">npm-pack — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-ping.html
vendored
2
deps/npm/html/doc/cli/npm-ping.html
vendored
@ -32,4 +32,4 @@
|
||||
<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>
|
||||
</table>
|
||||
<p id="footer">npm-ping — npm@3.8.3</p>
|
||||
<p id="footer">npm-ping — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-prefix — npm@3.8.3</p>
|
||||
<p id="footer">npm-prefix — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-prune.html
vendored
2
deps/npm/html/doc/cli/npm-prune.html
vendored
@ -40,5 +40,5 @@ negate <code>NODE_ENV</code> being set to <code>production</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 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>
|
||||
<p id="footer">npm-prune — npm@3.8.3</p>
|
||||
<p id="footer">npm-prune — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-publish.html
vendored
2
deps/npm/html/doc/cli/npm-publish.html
vendored
@ -72,5 +72,5 @@ it is removed with <a href="../cli/npm-unpublish.html">npm-unpublish(1)</a>.</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 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>
|
||||
<p id="footer">npm-publish — npm@3.8.3</p>
|
||||
<p id="footer">npm-publish — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-rebuild.html
vendored
2
deps/npm/html/doc/cli/npm-rebuild.html
vendored
@ -35,5 +35,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 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>
|
||||
<p id="footer">npm-rebuild — npm@3.8.3</p>
|
||||
<p id="footer">npm-rebuild — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-repo.html
vendored
2
deps/npm/html/doc/cli/npm-repo.html
vendored
@ -41,5 +41,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 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>
|
||||
<p id="footer">npm-repo — npm@3.8.3</p>
|
||||
<p id="footer">npm-repo — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-restart — npm@3.8.3</p>
|
||||
<p id="footer">npm-restart — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-root — npm@3.8.3</p>
|
||||
<p id="footer">npm-root — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-run-script.html
vendored
2
deps/npm/html/doc/cli/npm-run-script.html
vendored
@ -60,5 +60,5 @@ you will be given a warning to run <code>npm install</code>, just in case you
|
||||
<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>
|
||||
</table>
|
||||
<p id="footer">npm-run-script — npm@3.8.3</p>
|
||||
<p id="footer">npm-run-script — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-search.html
vendored
2
deps/npm/html/doc/cli/npm-search.html
vendored
@ -57,5 +57,5 @@ Pass a different registry url such as the default above in order to override thi
|
||||
<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>
|
||||
</table>
|
||||
<p id="footer">npm-search — npm@3.8.3</p>
|
||||
<p id="footer">npm-search — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-shrinkwrap.html
vendored
2
deps/npm/html/doc/cli/npm-shrinkwrap.html
vendored
@ -169,5 +169,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 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>
|
||||
<p id="footer">npm-shrinkwrap — npm@3.8.3</p>
|
||||
<p id="footer">npm-shrinkwrap — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-star — npm@3.8.3</p>
|
||||
<p id="footer">npm-star — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-stars.html
vendored
2
deps/npm/html/doc/cli/npm-stars.html
vendored
@ -36,5 +36,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 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>
|
||||
<p id="footer">npm-stars — npm@3.8.3</p>
|
||||
<p id="footer">npm-stars — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-start.html
vendored
2
deps/npm/html/doc/cli/npm-start.html
vendored
@ -39,5 +39,5 @@ more details.</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 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>
|
||||
<p id="footer">npm-start — npm@3.8.3</p>
|
||||
<p id="footer">npm-start — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-stop — npm@3.8.3</p>
|
||||
<p id="footer">npm-stop — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-tag.html
vendored
2
deps/npm/html/doc/cli/npm-tag.html
vendored
@ -63,5 +63,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 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>
|
||||
<p id="footer">npm-tag — npm@3.8.3</p>
|
||||
<p id="footer">npm-tag — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-team.html
vendored
2
deps/npm/html/doc/cli/npm-team.html
vendored
@ -67,4 +67,4 @@ use the <code>npm access</code> command to grant or revoke the appropriate permi
|
||||
<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>
|
||||
</table>
|
||||
<p id="footer">npm-team — npm@3.8.3</p>
|
||||
<p id="footer">npm-team — npm@3.8.6</p>
|
||||
|
2
deps/npm/html/doc/cli/npm-test.html
vendored
2
deps/npm/html/doc/cli/npm-test.html
vendored
@ -38,5 +38,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 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>
|
||||
<p id="footer">npm-test — npm@3.8.3</p>
|
||||
<p id="footer">npm-test — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-uninstall.html
vendored
2
deps/npm/html/doc/cli/npm-uninstall.html
vendored
@ -60,5 +60,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 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>
|
||||
<p id="footer">npm-uninstall — npm@3.8.3</p>
|
||||
<p id="footer">npm-uninstall — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-unpublish — npm@3.8.3</p>
|
||||
<p id="footer">npm-unpublish — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-update.html
vendored
2
deps/npm/html/doc/cli/npm-update.html
vendored
@ -118,5 +118,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 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>
|
||||
<p id="footer">npm-update — npm@3.8.3</p>
|
||||
<p id="footer">npm-update — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-version.html
vendored
2
deps/npm/html/doc/cli/npm-version.html
vendored
@ -100,5 +100,5 @@ and tag up to the server, and deletes the <code>build/temp</code> 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 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>
|
||||
<p id="footer">npm-version — npm@3.8.3</p>
|
||||
<p id="footer">npm-version — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/cli/npm-view.html
vendored
2
deps/npm/html/doc/cli/npm-view.html
vendored
@ -86,5 +86,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 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>
|
||||
<p id="footer">npm-view — npm@3.8.3</p>
|
||||
<p id="footer">npm-view — npm@3.8.6</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 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>
|
||||
<p id="footer">npm-whoami — npm@3.8.3</p>
|
||||
<p id="footer">npm-whoami — npm@3.8.6</p>
|
||||
|
||||
|
7
deps/npm/html/doc/cli/npm.html
vendored
7
deps/npm/html/doc/cli/npm.html
vendored
@ -13,7 +13,7 @@
|
||||
<h2 id="synopsis">SYNOPSIS</h2>
|
||||
<pre><code>npm <command> [args]
|
||||
</code></pre><h2 id="version">VERSION</h2>
|
||||
<p>3.8.3</p>
|
||||
<p>3.8.6</p>
|
||||
<h2 id="description">DESCRIPTION</h2>
|
||||
<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
|
||||
@ -126,11 +126,10 @@ 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> ::
|
||||
<a href="https://github.com/isaacs/">isaacs</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>
|
||||
<ul>
|
||||
<li><a href="../cli/npm-help.html">npm-help(1)</a></li>
|
||||
<li><a href="../misc/npm-faq.html">npm-faq(7)</a></li>
|
||||
<li><a href="../../doc/README.html">README</a></li>
|
||||
<li><a href="../files/package.json.html">package.json(5)</a></li>
|
||||
<li><a href="../cli/npm-install.html">npm-install(1)</a></li>
|
||||
@ -151,5 +150,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 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>
|
||||
<p id="footer">npm — npm@3.8.3</p>
|
||||
<p id="footer">npm — npm@3.8.6</p>
|
||||
|
||||
|
3
deps/npm/html/doc/files/npm-folders.html
vendored
3
deps/npm/html/doc/files/npm-folders.html
vendored
@ -161,7 +161,6 @@ not be included in the package tarball.</p>
|
||||
cannot be found elsewhere. See <code><a href="../files/package.json.html">package.json(5)</a></code> for more information.</p>
|
||||
<h2 id="see-also">SEE ALSO</h2>
|
||||
<ul>
|
||||
<li><a href="../misc/npm-faq.html">npm-faq(7)</a></li>
|
||||
<li><a href="../files/package.json.html">package.json(5)</a></li>
|
||||
<li><a href="../cli/npm-install.html">npm-install(1)</a></li>
|
||||
<li><a href="../cli/npm-pack.html">npm-pack(1)</a></li>
|
||||
@ -183,5 +182,5 @@ cannot be found elsewhere. See <code><a href="../files/package.json.html">packa
|
||||
<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>
|
||||
</table>
|
||||
<p id="footer">npm-folders — npm@3.8.3</p>
|
||||
<p id="footer">npm-folders — npm@3.8.6</p>
|
||||
|
||||
|
3
deps/npm/html/doc/files/npm-global.html
vendored
3
deps/npm/html/doc/files/npm-global.html
vendored
@ -161,7 +161,6 @@ not be included in the package tarball.</p>
|
||||
cannot be found elsewhere. See <code><a href="../files/package.json.html">package.json(5)</a></code> for more information.</p>
|
||||
<h2 id="see-also">SEE ALSO</h2>
|
||||
<ul>
|
||||
<li><a href="../misc/npm-faq.html">npm-faq(7)</a></li>
|
||||
<li><a href="../files/package.json.html">package.json(5)</a></li>
|
||||
<li><a href="../cli/npm-install.html">npm-install(1)</a></li>
|
||||
<li><a href="../cli/npm-pack.html">npm-pack(1)</a></li>
|
||||
@ -183,5 +182,5 @@ cannot be found elsewhere. See <code><a href="../files/package.json.html">packa
|
||||
<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>
|
||||
</table>
|
||||
<p id="footer">npm-folders — npm@3.8.3</p>
|
||||
<p id="footer">npm-folders — npm@3.8.6</p>
|
||||
|
||||
|
8
deps/npm/html/doc/files/npm-json.html
vendored
8
deps/npm/html/doc/files/npm-json.html
vendored
@ -162,6 +162,7 @@ works just like a <code>.gitignore</code>.</p>
|
||||
<li><code>._*</code></li>
|
||||
<li><code>npm-debug.log</code></li>
|
||||
<li><code>.npmrc</code></li>
|
||||
<li><code>node_modules</code></li>
|
||||
</ul>
|
||||
<h2 id="main">main</h2>
|
||||
<p>The main field is a module ID that is the primary entry point to your program.
|
||||
@ -494,8 +495,8 @@ that it works on node.</p>
|
||||
<p>You can also use the "engines" field to specify which versions of npm
|
||||
are capable of properly installing your program. For example:</p>
|
||||
<pre><code>{ "engines" : { "npm" : "~1.0.20" } }
|
||||
</code></pre><p>Note that, unless the user has set the <code>engine-strict</code> config flag, this
|
||||
field is advisory only.</p>
|
||||
</code></pre><p>Unless the user has set the <code>engine-strict</code> config flag, this
|
||||
field is advisory only will produce warnings when your package is installed as a dependency.</p>
|
||||
<h2 id="enginestrict">engineStrict</h2>
|
||||
<p><strong>This feature was deprecated with npm 3.0.0</strong></p>
|
||||
<p>Prior to npm 3.0.0, this feature was used to treat this package as if the
|
||||
@ -566,7 +567,6 @@ ignored.</p>
|
||||
<li><a href="../cli/npm-config.html">npm-config(1)</a></li>
|
||||
<li><a href="../misc/npm-config.html">npm-config(7)</a></li>
|
||||
<li><a href="../cli/npm-help.html">npm-help(1)</a></li>
|
||||
<li><a href="../misc/npm-faq.html">npm-faq(7)</a></li>
|
||||
<li><a href="../cli/npm-install.html">npm-install(1)</a></li>
|
||||
<li><a href="../cli/npm-publish.html">npm-publish(1)</a></li>
|
||||
<li><a href="../cli/npm-uninstall.html">npm-uninstall(1)</a></li>
|
||||
@ -583,5 +583,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 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>
|
||||
<p id="footer">package.json — npm@3.8.3</p>
|
||||
<p id="footer">package.json — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/files/npmrc.html
vendored
2
deps/npm/html/doc/files/npmrc.html
vendored
@ -83,5 +83,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 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>
|
||||
<p id="footer">npmrc — npm@3.8.3</p>
|
||||
<p id="footer">npmrc — npm@3.8.6</p>
|
||||
|
||||
|
8
deps/npm/html/doc/files/package.json.html
vendored
8
deps/npm/html/doc/files/package.json.html
vendored
@ -162,6 +162,7 @@ works just like a <code>.gitignore</code>.</p>
|
||||
<li><code>._*</code></li>
|
||||
<li><code>npm-debug.log</code></li>
|
||||
<li><code>.npmrc</code></li>
|
||||
<li><code>node_modules</code></li>
|
||||
</ul>
|
||||
<h2 id="main">main</h2>
|
||||
<p>The main field is a module ID that is the primary entry point to your program.
|
||||
@ -494,8 +495,8 @@ that it works on node.</p>
|
||||
<p>You can also use the "engines" field to specify which versions of npm
|
||||
are capable of properly installing your program. For example:</p>
|
||||
<pre><code>{ "engines" : { "npm" : "~1.0.20" } }
|
||||
</code></pre><p>Note that, unless the user has set the <code>engine-strict</code> config flag, this
|
||||
field is advisory only.</p>
|
||||
</code></pre><p>Unless the user has set the <code>engine-strict</code> config flag, this
|
||||
field is advisory only will produce warnings when your package is installed as a dependency.</p>
|
||||
<h2 id="enginestrict">engineStrict</h2>
|
||||
<p><strong>This feature was deprecated with npm 3.0.0</strong></p>
|
||||
<p>Prior to npm 3.0.0, this feature was used to treat this package as if the
|
||||
@ -566,7 +567,6 @@ ignored.</p>
|
||||
<li><a href="../cli/npm-config.html">npm-config(1)</a></li>
|
||||
<li><a href="../misc/npm-config.html">npm-config(7)</a></li>
|
||||
<li><a href="../cli/npm-help.html">npm-help(1)</a></li>
|
||||
<li><a href="../misc/npm-faq.html">npm-faq(7)</a></li>
|
||||
<li><a href="../cli/npm-install.html">npm-install(1)</a></li>
|
||||
<li><a href="../cli/npm-publish.html">npm-publish(1)</a></li>
|
||||
<li><a href="../cli/npm-uninstall.html">npm-uninstall(1)</a></li>
|
||||
@ -583,5 +583,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 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>
|
||||
<p id="footer">package.json — npm@3.8.3</p>
|
||||
<p id="footer">package.json — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/index.html
vendored
2
deps/npm/html/doc/index.html
vendored
@ -162,5 +162,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 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>
|
||||
<p id="footer">npm-index — npm@3.8.3</p>
|
||||
<p id="footer">npm-index — npm@3.8.6</p>
|
||||
|
||||
|
3
deps/npm/html/doc/misc/npm-coding-style.html
vendored
3
deps/npm/html/doc/misc/npm-coding-style.html
vendored
@ -139,7 +139,6 @@ set to anything."</p>
|
||||
<h2 id="see-also">SEE ALSO</h2>
|
||||
<ul>
|
||||
<li><a href="../misc/npm-developers.html">npm-developers(7)</a></li>
|
||||
<li><a href="../misc/npm-faq.html">npm-faq(7)</a></li>
|
||||
<li><a href="../cli/npm.html">npm(1)</a></li>
|
||||
</ul>
|
||||
|
||||
@ -154,5 +153,5 @@ set to anything."</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 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>
|
||||
<p id="footer">npm-coding-style — npm@3.8.3</p>
|
||||
<p id="footer">npm-coding-style — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/npm-config.html
vendored
2
deps/npm/html/doc/misc/npm-config.html
vendored
@ -856,5 +856,5 @@ exit successfully.</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 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>
|
||||
<p id="footer">npm-config — npm@3.8.3</p>
|
||||
<p id="footer">npm-config — npm@3.8.6</p>
|
||||
|
||||
|
3
deps/npm/html/doc/misc/npm-developers.html
vendored
3
deps/npm/html/doc/misc/npm-developers.html
vendored
@ -174,7 +174,6 @@ from a fresh checkout.</p>
|
||||
<p>Tell the world how easy it is to install your program!</p>
|
||||
<h2 id="see-also">SEE ALSO</h2>
|
||||
<ul>
|
||||
<li><a href="../misc/npm-faq.html">npm-faq(7)</a></li>
|
||||
<li><a href="../cli/npm.html">npm(1)</a></li>
|
||||
<li><a href="../cli/npm-init.html">npm-init(1)</a></li>
|
||||
<li><a href="../files/package.json.html">package.json(5)</a></li>
|
||||
@ -195,5 +194,5 @@ from a fresh checkout.</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 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>
|
||||
<p id="footer">npm-developers — npm@3.8.3</p>
|
||||
<p id="footer">npm-developers — npm@3.8.6</p>
|
||||
|
||||
|
8
deps/npm/html/doc/misc/npm-disputes.html
vendored
8
deps/npm/html/doc/misc/npm-disputes.html
vendored
@ -13,7 +13,7 @@
|
||||
<h2 id="synopsis">SYNOPSIS</h2>
|
||||
<ol>
|
||||
<li>Get the author email with <code>npm owner ls <pkgname></code></li>
|
||||
<li>Email the author, CC <a href="mailto:support@npmjs.com">support@npmjs.com</a></li>
|
||||
<li>Email the author, CC <a href="mailto:support@npmjs.com">support@npmjs.com</a></li>
|
||||
<li>After a few weeks, if there's no resolution, we'll sort it out.</li>
|
||||
</ol>
|
||||
<p>Don't squat on package names. Publish code or move out of the way.</p>
|
||||
@ -51,12 +51,12 @@ Joe's appropriate course of action in each case is the same.</p>
|
||||
owner (Bob).</li>
|
||||
<li>Joe emails Bob, explaining the situation <strong>as respectfully as
|
||||
possible</strong>, and what he would like to do with the module name. He
|
||||
adds the npm support staff <a href="mailto:support@npmjs.com">support@npmjs.com</a> to the CC list of
|
||||
adds the npm support staff <a href="mailto:support@npmjs.com">support@npmjs.com</a> to the CC list of
|
||||
the email. Mention in the email that Bob can run <code>npm owner add
|
||||
joe foo</code> to add Joe as an owner of the <code>foo</code> package.</li>
|
||||
<li>After a reasonable amount of time, if Bob has not responded, or if
|
||||
Bob and Joe can't come to any sort of resolution, email support
|
||||
<a href="mailto:support@npmjs.com">support@npmjs.com</a> and we'll sort it out. ("Reasonable" is
|
||||
<a href="mailto:support@npmjs.com">support@npmjs.com</a> and we'll sort it out. ("Reasonable" is
|
||||
usually at least 4 weeks, but extra time is allowed around common
|
||||
holidays.)</li>
|
||||
</ol>
|
||||
@ -112,5 +112,5 @@ things into it.</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 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>
|
||||
<p id="footer">npm-disputes — npm@3.8.3</p>
|
||||
<p id="footer">npm-disputes — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/npm-index.html
vendored
2
deps/npm/html/doc/misc/npm-index.html
vendored
@ -162,4 +162,4 @@
|
||||
<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>
|
||||
</table>
|
||||
<p id="footer">npm-index — npm@3.8.3</p>
|
||||
<p id="footer">npm-index — npm@3.8.6</p>
|
||||
|
6
deps/npm/html/doc/misc/npm-orgs.html
vendored
6
deps/npm/html/doc/misc/npm-orgs.html
vendored
@ -22,8 +22,8 @@
|
||||
<p>The developer will be able to access packages based on the teams they are on. Access is either read-write or read-only.</p>
|
||||
<p>There are two main commands:</p>
|
||||
<ol>
|
||||
<li><code>npm team</code> see <a href="../cli/npm-access.html">npm-access(1)</a> for more details</li>
|
||||
<li><code>npm access</code> see <a href="../cli/npm-team.html">npm-team(1)</a> for more details</li>
|
||||
<li><code>npm team</code> see <a href="../cli/npm-team.html">npm-team(1)</a> for more details</li>
|
||||
<li><code>npm access</code> see <a href="../cli/npm-access.html">npm-access(1)</a> for more details</li>
|
||||
</ol>
|
||||
<h2 id="team-admins-create-teams">Team Admins create teams</h2>
|
||||
<ul>
|
||||
@ -86,4 +86,4 @@
|
||||
<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>
|
||||
</table>
|
||||
<p id="footer">npm-orgs — npm@3.8.3</p>
|
||||
<p id="footer">npm-orgs — npm@3.8.6</p>
|
||||
|
2
deps/npm/html/doc/misc/npm-registry.html
vendored
2
deps/npm/html/doc/misc/npm-registry.html
vendored
@ -70,5 +70,5 @@ effectively implement the entire CouchDB API anyway.</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 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>
|
||||
<p id="footer">npm-registry — npm@3.8.3</p>
|
||||
<p id="footer">npm-registry — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/npm-scope.html
vendored
2
deps/npm/html/doc/misc/npm-scope.html
vendored
@ -91,5 +91,5 @@ that registry 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 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>
|
||||
<p id="footer">npm-scope — npm@3.8.3</p>
|
||||
<p id="footer">npm-scope — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/npm-scripts.html
vendored
2
deps/npm/html/doc/misc/npm-scripts.html
vendored
@ -207,5 +207,5 @@ scripts is for compilation which must be done on the target architecture.</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 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>
|
||||
<p id="footer">npm-scripts — npm@3.8.3</p>
|
||||
<p id="footer">npm-scripts — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/removing-npm.html
vendored
2
deps/npm/html/doc/misc/removing-npm.html
vendored
@ -57,5 +57,5 @@ modules. To track those down, you can do the following:</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 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>
|
||||
<p id="footer">removing-npm — npm@3.8.3</p>
|
||||
<p id="footer">removing-npm — npm@3.8.6</p>
|
||||
|
||||
|
2
deps/npm/html/doc/misc/semver.html
vendored
2
deps/npm/html/doc/misc/semver.html
vendored
@ -302,5 +302,5 @@ range, use the <code>satisfies(version, range)</code> function.</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 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>
|
||||
<p id="footer">semver — npm@3.8.3</p>
|
||||
<p id="footer">semver — npm@3.8.6</p>
|
||||
|
||||
|
10
deps/npm/html/index.html
vendored
10
deps/npm/html/index.html
vendored
@ -61,7 +61,7 @@ code { background:#fff ; outline: 1px solid #ccc; padding:0 2px; }
|
||||
|
||||
<h2>Easy Zero Line Install</h2>
|
||||
|
||||
<p><a href="http://nodejs.org/#download">Install Node.js</a> <br>
|
||||
<p><a href="https://nodejs.org/en/download/">Install Node.js</a> <br>
|
||||
(npm comes with it.)</p>
|
||||
|
||||
<p>Because a one-line install is one too many.</p>
|
||||
@ -70,24 +70,22 @@ code { background:#fff ; outline: 1px solid #ccc; padding:0 2px; }
|
||||
|
||||
<ol>
|
||||
<li><a href="https://github.com/npm/npm">Get the code.</a>
|
||||
<li>Do what <a href="https://npmjs.org/doc/README.html">the README</a>
|
||||
<li>Do what <a href="doc/README.html">the README</a>
|
||||
says to do.
|
||||
</ol>
|
||||
|
||||
<p>There's a pretty thorough install script at
|
||||
<a href="https://npmjs.org/install.sh">https://npmjs.org/install.sh</a></p>
|
||||
|
||||
<p>For maximum security, make sure to thorougly inspect every
|
||||
<p>For maximum security, make sure to thoroughly inspect every
|
||||
program that you run on your computer!</p>
|
||||
|
||||
<h2>Other Cool Stuff</h2>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://npmjs.org/doc/README.html">README</a>
|
||||
<li><a href="doc/README.html">README</a>
|
||||
<li><a href="doc/">Help Documentation</a>
|
||||
<li><a href="doc/faq.html">FAQ</a>
|
||||
<li><a href="https://www.npmjs.com/">Search for Packages</a>
|
||||
<li><a href="https://groups.google.com/group/npm-">Mailing List</a>
|
||||
<li><a href="https://github.com/npm/npm/issues">Bugs</a>
|
||||
</ul>
|
||||
|
||||
|
1
deps/npm/lib/config/cmd-list.js
vendored
1
deps/npm/lib/config/cmd-list.js
vendored
@ -85,7 +85,6 @@ var cmdList = [
|
||||
'docs',
|
||||
'repo',
|
||||
'bugs',
|
||||
'faq',
|
||||
'root',
|
||||
'prefix',
|
||||
'bin',
|
||||
|
4
deps/npm/lib/deprecate.js
vendored
4
deps/npm/lib/deprecate.js
vendored
@ -37,6 +37,10 @@ function deprecate (args, cb) {
|
||||
// fetch the data and make sure it exists.
|
||||
var p = npa(pkg)
|
||||
|
||||
// npa makes the default spec "latest", but for deprecation
|
||||
// "*" is the appropriate default.
|
||||
if (p.rawSpec === '') p.spec = '*'
|
||||
|
||||
mapToRegistry(p.name, npm.config, function (er, uri, auth) {
|
||||
if (er) return cb(er)
|
||||
|
||||
|
7
deps/npm/lib/faq.js
vendored
7
deps/npm/lib/faq.js
vendored
@ -1,7 +0,0 @@
|
||||
module.exports = faq
|
||||
|
||||
faq.usage = 'npm faq'
|
||||
|
||||
var npm = require('./npm.js')
|
||||
|
||||
function faq (args, cb) { npm.commands.help(['faq'], cb) }
|
1
deps/npm/lib/help.js
vendored
1
deps/npm/lib/help.js
vendored
@ -170,7 +170,6 @@ function npmUsage (valid, cb) {
|
||||
'',
|
||||
'npm <cmd> -h quick help on <cmd>',
|
||||
'npm -l display full usage info',
|
||||
'npm faq commonly asked questions',
|
||||
'npm help <term> search for help on <term>',
|
||||
'npm help npm involved overview',
|
||||
'',
|
||||
|
4
deps/npm/lib/search.js
vendored
4
deps/npm/lib/search.js
vendored
@ -49,6 +49,10 @@ function search (args, silent, staleness, cb) {
|
||||
return s.toLowerCase()
|
||||
}).filter(function (s) { return s })
|
||||
|
||||
if (opts.length === 0) {
|
||||
return cb(new Error('search must be called with arguments'))
|
||||
}
|
||||
|
||||
if (typeof searchexclude === 'string') {
|
||||
searchexclude = searchexclude.split(/\s+/)
|
||||
} else {
|
||||
|
19
deps/npm/lib/utils/link.js
vendored
19
deps/npm/lib/utils/link.js
vendored
@ -25,6 +25,24 @@ function linkIfExists (from, to, gently, cb) {
|
||||
})
|
||||
}
|
||||
|
||||
function resolveIfSymlink (maybeSymlinkPath, cb) {
|
||||
fs.lstat(maybeSymlinkPath, function (err, stat) {
|
||||
if (err) return cb.apply(this, arguments)
|
||||
if (!stat.isSymbolicLink()) return cb(null, maybeSymlinkPath)
|
||||
fs.readlink(maybeSymlinkPath, cb)
|
||||
})
|
||||
}
|
||||
|
||||
function ensureFromIsNotSource (from, to, cb) {
|
||||
resolveIfSymlink(from, function (err, fromDestination) {
|
||||
if (err) return cb.apply(this, arguments)
|
||||
if (path.resolve(path.dirname(from), fromDestination) === path.resolve(to)) {
|
||||
return cb(new Error('Link target resolves to the same directory as link source: ' + to))
|
||||
}
|
||||
cb.apply(this, arguments)
|
||||
})
|
||||
}
|
||||
|
||||
function link (from, to, gently, abs, cb) {
|
||||
if (typeof cb !== 'function') {
|
||||
cb = abs
|
||||
@ -48,6 +66,7 @@ function link (from, to, gently, abs, cb) {
|
||||
|
||||
chain(
|
||||
[
|
||||
[ensureFromIsNotSource, from, to],
|
||||
[fs, 'stat', from],
|
||||
[rm, to, gently],
|
||||
[mkdir, path.dirname(to)],
|
||||
|
5
deps/npm/man/man1/npm-README.1
vendored
5
deps/npm/man/man1/npm-README.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM" "1" "March 2016" "" ""
|
||||
.TH "NPM" "1" "April 2016" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm\fR \- a JavaScript package manager
|
||||
.P
|
||||
@ -145,7 +145,6 @@ you have chosen\.
|
||||
.SH More Docs
|
||||
.P
|
||||
Check out the docs \fIhttps://docs\.npmjs\.com/\fR,
|
||||
especially the faq \fIhttps://docs\.npmjs\.com/misc/faq\fR\|\.
|
||||
.P
|
||||
You can use the \fBnpm help\fP command to read any of them\.
|
||||
.P
|
||||
@ -171,8 +170,6 @@ will no doubt tell you to put the output in a gist or email\.
|
||||
.IP \(bu 2
|
||||
npm help npm
|
||||
.IP \(bu 2
|
||||
npm help 7 faq
|
||||
.IP \(bu 2
|
||||
npm help help
|
||||
.IP \(bu 2
|
||||
npm help 7 index
|
||||
|
2
deps/npm/man/man1/npm-access.1
vendored
2
deps/npm/man/man1/npm-access.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-ACCESS" "1" "March 2016" "" ""
|
||||
.TH "NPM\-ACCESS" "1" "April 2016" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-access\fR \- Set access level on published packages
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-adduser.1
vendored
2
deps/npm/man/man1/npm-adduser.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-ADDUSER" "1" "March 2016" "" ""
|
||||
.TH "NPM\-ADDUSER" "1" "April 2016" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-adduser\fR \- Add a registry user account
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-bin.1
vendored
2
deps/npm/man/man1/npm-bin.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-BIN" "1" "March 2016" "" ""
|
||||
.TH "NPM\-BIN" "1" "April 2016" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-bin\fR \- Display npm bin folder
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-bugs.1
vendored
2
deps/npm/man/man1/npm-bugs.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-BUGS" "1" "March 2016" "" ""
|
||||
.TH "NPM\-BUGS" "1" "April 2016" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-bugs\fR \- Bugs for a package in a web browser maybe
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-build.1
vendored
2
deps/npm/man/man1/npm-build.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-BUILD" "1" "March 2016" "" ""
|
||||
.TH "NPM\-BUILD" "1" "April 2016" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-build\fR \- Build a package
|
||||
.SH SYNOPSIS
|
||||
|
2
deps/npm/man/man1/npm-bundle.1
vendored
2
deps/npm/man/man1/npm-bundle.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-BUNDLE" "1" "March 2016" "" ""
|
||||
.TH "NPM\-BUNDLE" "1" "April 2016" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-bundle\fR \- REMOVED
|
||||
.SH DESCRIPTION
|
||||
|
2
deps/npm/man/man1/npm-cache.1
vendored
2
deps/npm/man/man1/npm-cache.1
vendored
@ -1,4 +1,4 @@
|
||||
.TH "NPM\-CACHE" "1" "March 2016" "" ""
|
||||
.TH "NPM\-CACHE" "1" "April 2016" "" ""
|
||||
.SH "NAME"
|
||||
\fBnpm-cache\fR \- Manipulates packages cache
|
||||
.SH SYNOPSIS
|
||||
|
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