Skip to content

Commit b48dbf9

Browse files
iarnarvagg
authored andcommitted
deps: upgrade npm to 3.3.12
PR-URL: #3685 Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent 9a45c21 commit b48dbf9

File tree

149 files changed

+770
-173
lines changed

Some content is hidden

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

149 files changed

+770
-173
lines changed

β€Ždeps/npm/CHANGELOG.md

+102
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,105 @@
1+
### v3.3.12 (2015-11-02):
2+
3+
Hi, a little hot-fix release for a bug introduced in 3.3.11. The ENOENT fix
4+
last week ([`f0e2088`](https://github.com/npm/npm/commit/f0e2088)) broke
5+
upgrades of modules that have bundled dependencies (like `npm`, augh!)
6+
7+
* [`aedf7cf`](https://github.com/npm/npm/commit/aedf7cf)
8+
[#10192](//github.com/npm/npm/pull/10192)
9+
If a bundled module is going to be replacing a module that's currently on
10+
disk (for instance, when you upgrade a module that includes bundled
11+
dependencies) we want to select the version from the bundle in preference
12+
over the one that was there previously.
13+
([@iarna](https://github.com/iarna))
14+
15+
### v3.3.11 (2015-10-29):
16+
17+
This is a dependency update week, so that means no PRs from our lovely
18+
users. Look for those next week. As it happens, the dependencies updated
19+
were just devdeps, so nothing for you all to worry about.
20+
21+
But the bug fixes, oh geez, I tracked down some really long standing stuff
22+
this week!! The headliner is those intermittent `ENOENT` errors that no one
23+
could reproduce consistently? I think they're nailed! But also pretty
24+
important, the bug where `hapi` would install w/ a dep missing? Squashed!
25+
26+
#### EEEEEEENOENT
27+
28+
* [`f0e2088`](https://github.com/npm/npm/commit/f0e2088)
29+
[#10026](https://github.com/npm/npm/issues/10026)
30+
Eliminate some, if not many, of the EONENT errors `npm@3` has seen over
31+
the past few months. This was happening when npm would, in its own mind,
32+
correct a bundled dependency, due to a `package.json` specifying an
33+
incompatible version. Then, when npm extracted the bundled version, what
34+
was on disk didn't match its mind and… well, when it tried to act on what
35+
was in its mind, we got an `ENOENT` because it didn't actually exist on
36+
disk.
37+
([@iarna](https://github.com/iarna))
38+
39+
#### PARTIAL SHRINKWRAPS, NO LONGER A BAD DAY
40+
41+
* [`712fd9c`](https://github.com/npm/npm/commit/712fd9c)
42+
[#10153](https://github.com/npm/npm/pull/10153)
43+
Imagine that you have a module, let's call it `fun-time`, and it depends
44+
on two dependencies, `need-fun@1` and `need-time`. Further, `need-time`
45+
requires `need-fun@2`. So after install the logical tree will look like
46+
this:
47+
48+
```
49+
fun-time
50+
β”œβ”€β”€ need-fun@1
51+
└── need-time
52+
└── need-fun@2
53+
```
54+
55+
Now, the `fun-time` author also distributes a shrinkwrap, but it only includes
56+
the `need-fun@1` in it.
57+
58+
Resolving dependencies would look something like this:
59+
60+
1. Require `need-fun@1`: Use version from shrinkwrap (ignoring version)
61+
2. Require `need-time`: User version in package.json
62+
1. Require `need-fun@2`: Use version from shrinkwrap, which oh hey, is
63+
already installed at the top level, so no further action is needed.
64+
65+
Which results in this tree:
66+
67+
```
68+
fun-time
69+
β”œβ”€β”€ need-fun@1
70+
└── need-time
71+
```
72+
73+
We're ignoring the version check on things specified in the shrinkwrap
74+
so that you can override the version that will be installed. This is
75+
because you may want to use a different version than is specified
76+
by your dependencies' dependencies' `package.json` files.
77+
78+
To fix this, we now only allow overrides of a dependency version when
79+
that dependency is a child (in the tree) of the thing that requires it.
80+
This means that when we're looking for `need-fun@2` we'll see `need-fun@1`
81+
and reject it because, although it's from a shrinkwrap, it's parent is
82+
`fun-time` and the package doing the requiring is `need-time`.
83+
84+
([@iarna](https://github.com/iarna))
85+
86+
#### STRING `package.bin` AND NON-NPMJS REGISTRIES
87+
88+
* [`3de1463`](https://github.com/npm/npm/commit/3de1463)
89+
[#9187](https://github.com/npm/npm/issues/9187)
90+
If you were using a module with the `bin` field in your `package.json` set
91+
to a string on a non-npmjs registry then npm would crash, due to the our
92+
expectation that the `bin` field would be an object. We now pass all
93+
`package.json` data through a routine that normalizes the format,
94+
including the `bin` field. (This is the same routine that your
95+
`package.json` is passed through when read off of disk or sent to the
96+
registry for publication.) Doing this also ensures that older modules on
97+
npm's own registry will be treated exactly the same as new ones. (In the
98+
past we weren't always super careful about scrubbing `package.json` data
99+
on publish. And even when we were, those rules have subtly changed over
100+
time.)
101+
([@iarna](https://github.com/iarna))
102+
1103
### v3.3.10 (2015-10-22):
2104

3105
Hey you all! Welcome to a busy bug fix and PR week. We've got changes

β€Ždeps/npm/html/doc/README.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ <h2 id="legal-stuff">Legal Stuff</h2>
140140
<p>If you have a complaint about a package in the public npm registry,
141141
and cannot <a href="https://docs.npmjs.com/misc/disputes">resolve it with the package
142142
owner</a>, please email
143-
<a href="&#109;&#x61;&#x69;&#x6c;&#x74;&#111;&#x3a;&#x73;&#117;&#x70;&#112;&#x6f;&#114;&#116;&#64;&#110;&#x70;&#109;&#106;&#115;&#46;&#x63;&#x6f;&#109;">&#x73;&#117;&#x70;&#112;&#x6f;&#114;&#116;&#64;&#110;&#x70;&#109;&#106;&#115;&#46;&#x63;&#x6f;&#109;</a> and explain the situation.</p>
143+
<a href="&#109;&#x61;&#x69;&#x6c;&#116;&#x6f;&#x3a;&#115;&#117;&#x70;&#112;&#x6f;&#114;&#116;&#x40;&#110;&#x70;&#x6d;&#x6a;&#115;&#46;&#x63;&#x6f;&#x6d;">&#115;&#117;&#x70;&#112;&#x6f;&#114;&#116;&#x40;&#110;&#x70;&#x6d;&#x6a;&#115;&#46;&#x63;&#x6f;&#x6d;</a> and explain the situation.</p>
144144
<p>Any data published to The npm Registry (including user account
145145
information) may be removed or modified at the sole discretion of the
146146
npm server administrators.</p>
@@ -183,5 +183,5 @@ <h2 id="see-also">SEE ALSO</h2>
183183
<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>
184184
<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>
185185
</table>
186-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].10</p>
186+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].12</p>
187187

β€Ždeps/npm/html/doc/cli/npm-access.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,5 @@ <h2 id="see-also">SEE ALSO</h2>
8484
<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>
8585
<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>
8686
</table>
87-
<p id="footer">npm-access &mdash; [email protected].10</p>
87+
<p id="footer">npm-access &mdash; [email protected].12</p>
8888

β€Ždeps/npm/html/doc/cli/npm-adduser.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@ <h2 id="see-also">SEE ALSO</h2>
6868
<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>
6969
<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>
7070
</table>
71-
<p id="footer">npm-adduser &mdash; [email protected].10</p>
71+
<p id="footer">npm-adduser &mdash; [email protected].12</p>
7272

β€Ždeps/npm/html/doc/cli/npm-bin.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ <h2 id="see-also">SEE ALSO</h2>
3535
<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>
3636
<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>
3737
</table>
38-
<p id="footer">npm-bin &mdash; [email protected].10</p>
38+
<p id="footer">npm-bin &mdash; [email protected].12</p>
3939

β€Ždeps/npm/html/doc/cli/npm-bugs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@ <h2 id="see-also">SEE ALSO</h2>
5353
<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>
5454
<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>
5555
</table>
56-
<p id="footer">npm-bugs &mdash; [email protected].10</p>
56+
<p id="footer">npm-bugs &mdash; [email protected].12</p>
5757

β€Ždeps/npm/html/doc/cli/npm-build.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ <h2 id="description">DESCRIPTION</h2>
4040
<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>
4141
<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>
4242
</table>
43-
<p id="footer">npm-build &mdash; [email protected].10</p>
43+
<p id="footer">npm-build &mdash; [email protected].12</p>
4444

β€Ždeps/npm/html/doc/cli/npm-bundle.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ <h2 id="see-also">SEE ALSO</h2>
3131
<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>
3232
<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>
3333
</table>
34-
<p id="footer">npm-bundle &mdash; [email protected].10</p>
34+
<p id="footer">npm-bundle &mdash; [email protected].12</p>
3535

β€Ždeps/npm/html/doc/cli/npm-cache.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ <h2 id="see-also">SEE ALSO</h2>
8181
<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>
8282
<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>
8383
</table>
84-
<p id="footer">npm-cache &mdash; [email protected].10</p>
84+
<p id="footer">npm-cache &mdash; [email protected].12</p>
8585

β€Ždeps/npm/html/doc/cli/npm-completion.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ <h2 id="see-also">SEE ALSO</h2>
4444
<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>
4545
<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>
4646
</table>
47-
<p id="footer">npm-completion &mdash; [email protected].10</p>
47+
<p id="footer">npm-completion &mdash; [email protected].12</p>
4848

β€Ždeps/npm/html/doc/cli/npm-config.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,5 @@ <h2 id="see-also">SEE ALSO</h2>
6565
<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>
6666
<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>
6767
</table>
68-
<p id="footer">npm-config &mdash; [email protected].10</p>
68+
<p id="footer">npm-config &mdash; [email protected].12</p>
6969

β€Ždeps/npm/html/doc/cli/npm-dedupe.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@ <h2 id="see-also">SEE ALSO</h2>
5959
<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>
6060
<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>
6161
</table>
62-
<p id="footer">npm-dedupe &mdash; [email protected].10</p>
62+
<p id="footer">npm-dedupe &mdash; [email protected].12</p>
6363

β€Ždeps/npm/html/doc/cli/npm-deprecate.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ <h2 id="see-also">SEE ALSO</h2>
3838
<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>
3939
<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>
4040
</table>
41-
<p id="footer">npm-deprecate &mdash; [email protected].10</p>
41+
<p id="footer">npm-deprecate &mdash; [email protected].12</p>
4242

β€Ždeps/npm/html/doc/cli/npm-dist-tag.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,5 @@ <h2 id="see-also">SEE ALSO</h2>
7777
<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>
7878
<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>
7979
</table>
80-
<p id="footer">npm-dist-tag &mdash; [email protected].10</p>
80+
<p id="footer">npm-dist-tag &mdash; [email protected].12</p>
8181

β€Ždeps/npm/html/doc/cli/npm-docs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@ <h2 id="see-also">SEE ALSO</h2>
5656
<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>
5757
<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>
5858
</table>
59-
<p id="footer">npm-docs &mdash; [email protected].10</p>
59+
<p id="footer">npm-docs &mdash; [email protected].12</p>
6060

β€Ždeps/npm/html/doc/cli/npm-edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ <h2 id="see-also">SEE ALSO</h2>
4949
<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>
5050
<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>
5151
</table>
52-
<p id="footer">npm-edit &mdash; [email protected].10</p>
52+
<p id="footer">npm-edit &mdash; [email protected].12</p>
5353

β€Ždeps/npm/html/doc/cli/npm-explore.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ <h2 id="see-also">SEE ALSO</h2>
4949
<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>
5050
<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>
5151
</table>
52-
<p id="footer">npm-explore &mdash; [email protected].10</p>
52+
<p id="footer">npm-explore &mdash; [email protected].12</p>
5353

β€Ždeps/npm/html/doc/cli/npm-help-search.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ <h2 id="see-also">SEE ALSO</h2>
4646
<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>
4747
<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>
4848
</table>
49-
<p id="footer">npm-help-search &mdash; [email protected].10</p>
49+
<p id="footer">npm-help-search &mdash; [email protected].12</p>
5050

β€Ždeps/npm/html/doc/cli/npm-help.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ <h2 id="see-also">SEE ALSO</h2>
5151
<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>
5252
<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>
5353
</table>
54-
<p id="footer">npm-help &mdash; [email protected].10</p>
54+
<p id="footer">npm-help &mdash; [email protected].12</p>
5555

β€Ždeps/npm/html/doc/cli/npm-init.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ <h2 id="see-also">SEE ALSO</h2>
4848
<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>
4949
<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>
5050
</table>
51-
<p id="footer">npm-init &mdash; [email protected].10</p>
51+
<p id="footer">npm-init &mdash; [email protected].12</p>
5252

β€Ždeps/npm/html/doc/cli/npm-install.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -295,5 +295,5 @@ <h2 id="see-also">SEE ALSO</h2>
295295
<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>
296296
<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>
297297
</table>
298-
<p id="footer">npm-install &mdash; [email protected].10</p>
298+
<p id="footer">npm-install &mdash; [email protected].12</p>
299299

β€Ždeps/npm/html/doc/cli/npm-link.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
7373
<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>
7474
<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>
7575
</table>
76-
<p id="footer">npm-link &mdash; [email protected].10</p>
76+
<p id="footer">npm-link &mdash; [email protected].12</p>
7777

β€Ždeps/npm/html/doc/cli/npm-logout.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ <h2 id="see-also">SEE ALSO</h2>
5555
<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>
5656
<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>
5757
</table>
58-
<p id="footer">npm-logout &mdash; [email protected].10</p>
58+
<p id="footer">npm-logout &mdash; [email protected].12</p>
5959

β€Ždeps/npm/html/doc/cli/npm-ls.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h2 id="synopsis">SYNOPSIS</h2>
2121
limit the results to only the paths to the packages named. Note that
2222
nested packages will <em>also</em> show the paths to the specified packages.
2323
For example, running <code>npm ls promzard</code> in npm&#39;s source tree will show:</p>
24-
<pre><code>[email protected].10 /path/to/npm
24+
<pre><code>[email protected].12 /path/to/npm
2525
└─┬ [email protected]
2626
└── [email protected]
2727
</code></pre><p>It will print out extraneous, missing, and invalid packages.</p>
@@ -104,5 +104,5 @@ <h2 id="see-also">SEE ALSO</h2>
104104
<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>
105105
<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>
106106
</table>
107-
<p id="footer">npm-ls &mdash; [email protected].10</p>
107+
<p id="footer">npm-ls &mdash; [email protected].12</p>
108108

β€Ždeps/npm/html/doc/cli/npm-outdated.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@ <h2 id="see-also">SEE ALSO</h2>
6767
<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>
6868
<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>
6969
</table>
70-
<p id="footer">npm-outdated &mdash; [email protected].10</p>
70+
<p id="footer">npm-outdated &mdash; [email protected].12</p>
7171

0 commit comments

Comments
Β (0)