Skip to content

Commit 4554359

Browse files
committed
deps: upgrade npm to 2.2.0
1 parent de224d6 commit 4554359

File tree

218 files changed

+1237
-1295
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

218 files changed

+1237
-1295
lines changed

deps/npm/CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
### v2.2.0 (2015-01-08):
2+
3+
* [`88c531d`](https://github.com/npm/npm/commit/88c531d1c0b3aced8f2a09632db01b5635e7226a)
4+
[#7056](https://github.com/npm/npm/issues/7056) version doesn't need a
5+
package.json. ([@othiym23](https://github.com/othiym23))
6+
* [`2656c19`](https://github.com/npm/npm/commit/2656c19f6b915c3173acc3b6f184cc321563da5f)
7+
[#7095](https://github.com/npm/npm/issues/7095) Link to npm website instead
8+
of registry. ([@konklone](https://github.com/konklone))
9+
* [`c76b801`](https://github.com/npm/npm/commit/c76b8013bf1758587565822626171b76cb465c9e)
10+
[#7067](https://github.com/npm/npm/issues/7067) Obfuscate secrets, including
11+
nerfed URLs. ([@smikes](https://github.com/smikes))
12+
* [`17f66ce`](https://github.com/npm/npm/commit/17f66ceb1bd421084e4ae82a6b66634a6e272929)
13+
[#6849](https://github.com/npm/npm/issues/6849) Explain the tag workflow more
14+
clearly. ([@smikes](https://github.com/smikes))
15+
* [`e309df6`](https://github.com/npm/npm/commit/e309df642de33d10d6dffadaa8a5d214a924d0dc)
16+
[#7096](https://github.com/npm/npm/issues/7096) Really, `npm update -g` is
17+
almost always a terrible idea. ([@smikes](https://github.com/smikes))
18+
* [`acf287d`](https://github.com/npm/npm/commit/acf287d2547c8a0a8871652c164019261b666d55)
19+
[#6999](https://github.com/npm/npm/issues/6999) `npm run-script env`: add a
20+
new default script that will print out environment values.
21+
([@gcb](https://github.com/gcb))
22+
* [`560c009`](https://github.com/npm/npm/commit/560c00945d4dec926cd29193e336f137c7f3f951)
23+
[#6745](https://github.com/npm/npm/issues/6745) Document `npm update --dev`.
24+
([@smikes](https://github.com/smikes))
25+
* [`226a677`](https://github.com/npm/npm/commit/226a6776a1a9e28570485623b8adc2ec4b041335)
26+
[#7046](https://github.com/npm/npm/issues/7046) We have never been the Node
27+
package manager. ([@linclark](https://github.com/linclark))
28+
* [`38eef22`](https://github.com/npm/npm/commit/38eef2248f03bb8ab04cae1833e2a228fb887f3c)
29+
`[email protected]`: Compatibility with npmlog@^1.
30+
([@iarna](https://github.com/iarna))
31+
132
### v2.1.18 (2015-01-01):
233

334
* [`bf8640b`](https://github.com/npm/npm/commit/bf8640b0395b5dff71260a0cede7efc699a7bcf5)

deps/npm/doc/api/npm-tag.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ is the package name and version is the version number (much like installing a
1818
specific version).
1919

2020
The second element is the name of the tag to tag this version with. If this
21-
parameter is missing or falsey (empty), the default froom the config will be
21+
parameter is missing or falsey (empty), the default from the config will be
2222
used. For more information about how to set this config, check
2323
`man 3 npm-config` for programmatic usage or `man npm-config` for cli usage.

deps/npm/doc/api/npm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
npm(3) -- node package manager
2-
==============================
1+
npm(3) -- javascript package manager
2+
====================================
33

44
## SYNOPSIS
55

deps/npm/doc/cli/npm-run-script.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@ npm-run-script(1) -- Run arbitrary package scripts
1111
This runs an arbitrary command from a package's `"scripts"` object.
1212
If no package name is provided, it will search for a `package.json`
1313
in the current folder and use its `"scripts"` object. If no `"command"`
14-
is provided, it will list the available top level scripts.
14+
is provided, it will list the available top level scripts. The `env` command
15+
can be used to list environment variables that will be available to the script
16+
at runtime. If an "env" command is defined in your package it will have
17+
precedence instead.
1518

16-
It is used by the test, start, restart, and stop commands, but can be
17-
called directly, as well.
19+
`run[-script]` is used by the test, start, restart, and stop commands, but can
20+
be called directly, as well.
1821

1922
As of [`[email protected]`](http://blog.npmjs.org/post/98131109725/npm-2-0-0), you can
2023
use custom arguments when executing scripts. The special option `--` is used by

deps/npm/doc/cli/npm-tag.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,29 @@ This also applies to `npm dedupe`.
2323

2424
Publishing a package always sets the "latest" tag to the published version.
2525

26+
## PURPOSE
27+
28+
Tags can be used to provide an alias instead of version numbers. For
29+
example, `npm` currently uses the tag "next" to identify the upcoming
30+
version, and the tag "latest" to identify the current version.
31+
32+
A project might choose to have multiple streams of development, e.g.,
33+
"stable", "canary".
34+
35+
## CAVEATS
36+
37+
Tags must share a namespace with version numbers, because they are
38+
specified in the same slot: `npm install <pkg>@<version>` vs `npm
39+
install <pkg>@<tag>`.
40+
41+
Tags that can be interpreted as valid semver ranges will be
42+
rejected. For example, `v1.4` cannot be used as a tag, because it is
43+
interpreted by semver as `>=1.4.0 <1.5.0`. See
44+
<https://github.com/npm/npm/issues/6082>.
45+
46+
The simplest way to avoid semver problems with tags is to use tags
47+
that do not begin with a number or the letter `v`.
48+
2649
## SEE ALSO
2750

2851
* npm-publish(1)
@@ -31,4 +54,5 @@ Publishing a package always sets the "latest" tag to the published version.
3154
* npm-registry(7)
3255
* npm-config(1)
3356
* npm-config(7)
57+
* npm-tag(3)
3458
* npmrc(5)

deps/npm/doc/cli/npm-update.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ npm-update(1) -- Update a package
1010
This command will update all the packages listed to the latest version
1111
(specified by the `tag` config).
1212

13-
It will also install missing packages.
13+
It will also install missing packages. As with all commands that install
14+
packages, the `--dev` flag will cause `devDependencies` to be processed
15+
as well.
1416

1517
If the `-g` flag is specified, this command will update globally installed
1618
packages.

deps/npm/doc/cli/npm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
npm(1) -- node package manager
2-
==============================
1+
npm(1) -- javascript package manager
2+
====================================
33

44
## SYNOPSIS
55

deps/npm/doc/files/package.json.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The name is what your thing is called. Some tips:
2828
* The name will probably be passed as an argument to require(), so it should
2929
be something short, but also reasonably descriptive.
3030
* You may want to check the npm registry to see if there's something by that name
31-
already, before you get too attached to it. http://registry.npmjs.org/
31+
already, before you get too attached to it. <https://www.npmjs.com/>
3232

3333
A name can be optionally prefixed by a scope, e.g. `@myorg/mypackage`. See
3434
`npm-scope(7)` for more detail.

deps/npm/doc/misc/npm-index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Using npm on the command line
1111

1212
### npm(1)
1313

14-
node package manager
14+
javascript package manager
1515

1616
### npm-adduser(1)
1717

@@ -199,7 +199,7 @@ Using npm in your Node programs
199199

200200
### npm(3)
201201

202-
node package manager
202+
javascript package manager
203203

204204
### npm-bin(3)
205205

deps/npm/html/doc/README.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ <h2 id="legal-stuff">Legal Stuff</h2>
126126
<p>If you have a complaint about a package in the public npm registry,
127127
and cannot <a href="https://docs.npmjs.com/misc/disputes">resolve it with the package
128128
owner</a>, please email
129-
<a href="&#x6d;&#x61;&#105;&#x6c;&#116;&#111;&#x3a;&#x73;&#x75;&#x70;&#x70;&#111;&#114;&#x74;&#64;&#110;&#x70;&#x6d;&#x6a;&#x73;&#x2e;&#99;&#x6f;&#x6d;">&#x73;&#x75;&#x70;&#x70;&#111;&#114;&#x74;&#64;&#110;&#x70;&#x6d;&#x6a;&#x73;&#x2e;&#99;&#x6f;&#x6d;</a> and explain the situation.</p>
129+
<a href="&#x6d;&#x61;&#105;&#x6c;&#116;&#111;&#x3a;&#115;&#117;&#x70;&#112;&#x6f;&#114;&#116;&#x40;&#110;&#x70;&#x6d;&#x6a;&#115;&#x2e;&#x63;&#111;&#x6d;">&#115;&#117;&#x70;&#112;&#x6f;&#114;&#116;&#x40;&#110;&#x70;&#x6d;&#x6a;&#115;&#x2e;&#x63;&#111;&#x6d;</a> and explain the situation.</p>
130130
<p>Any data published to The npm Registry (including user account
131131
information) may be removed or modified at the sole discretion of the
132132
npm server administrators.</p>
@@ -169,5 +169,5 @@ <h2 id="see-also">SEE ALSO</h2>
169169
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
170170
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
171171
</table>
172-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@2.1.18</p>
172+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@2.2.0</p>
173173

0 commit comments

Comments
 (0)