Skip to content

Commit a5778cd

Browse files
committed
Merge remote-tracking branch 'upstream/v0.10' into v0.12
Conflicts: ChangeLog Makefile deps/uv/ChangeLog deps/uv/build.mk deps/uv/src/unix/darwin.c deps/uv/src/unix/getaddrinfo.c deps/uv/src/version.c deps/v8/src/checks.h deps/v8/src/isolate.h lib/cluster.js lib/module.js lib/timers.js lib/tls.js src/node_version.h
2 parents 28eee0a + b0277f3 commit a5778cd

File tree

442 files changed

+7064
-2567
lines changed

Some content is hidden

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

442 files changed

+7064
-2567
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,6 @@ deps/zlib/zlib.target.mk
6464
/SHASUMS*.txt*
6565

6666
/tools/wrk/wrk
67+
68+
# test artifacts
69+
tools/faketime

AUTHORS

+5
Original file line numberDiff line numberDiff line change
@@ -557,3 +557,8 @@ Greg Sabia Tucker <[email protected]>
557557
Calvin Metcalf <[email protected]>
558558
559559
Chris Barber <[email protected]>
560+
Nick Apperson <[email protected]>
561+
Oguz Bastemur <[email protected]>
562+
Maurice Butler <[email protected]>
563+
Chris Dickinson <[email protected]>
564+
Julien Gilli <[email protected]>

ChangeLog

+35
Original file line numberDiff line numberDiff line change
@@ -618,6 +618,41 @@
618618
* console: `console.dir()` bypasses inspect() methods (Nathan Rajlich)
619619

620620

621+
2014.07.31, Version 0.10.30 (Stable), bc0ff830aff1e016163d855e86ded5c98b0899e8
622+
623+
* uv: Upgrade to v0.10.28
624+
625+
* npm: Upgrade to v1.4.21
626+
627+
* v8: Interrupts must not mask stack overflow.
628+
629+
* Revert "stream: start old-mode read in a next tick" (Fedor Indutny)
630+
631+
* buffer: fix sign overflow in `readUIn32BE` (Fedor Indutny)
632+
633+
* buffer: improve {read,write}{U}Int* methods (Nick Apperson)
634+
635+
* child_process: handle writeUtf8String error (Fedor Indutny)
636+
637+
* deps: backport 4ed5fde4f from v8 upstream (Fedor Indutny)
638+
639+
* deps: cherry-pick eca441b2 from OpenSSL (Fedor Indutny)
640+
641+
* lib: remove and restructure calls to isNaN() (cjihrig)
642+
643+
* module: eliminate double `getenv()` (Maciej Małecki)
644+
645+
* stream2: flush extant data on read of ended stream (Chris Dickinson)
646+
647+
* streams: remove unused require('assert') (Rod Vagg)
648+
649+
* timers: backport f8193ab (Julien Gilli)
650+
651+
* util.h: interface compatibility (Oguz Bastemur)
652+
653+
* zlib: do not crash on write after close (Fedor Indutny)
654+
655+
621656
2014.06.05, Version 0.10.29 (Stable), ce82d6b8474bde7ac7df6d425fb88fb1bcba35bc
622657

623658
* openssl: to 1.0.1h (CVE-2014-0224)

Makefile

+7
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,13 @@ test-npm-publish: node
155155
test-addons: test-build
156156
$(PYTHON) tools/test.py --mode=release addons
157157

158+
test-timers:
159+
$(MAKE) --directory=tools faketime
160+
$(PYTHON) tools/test.py --mode=release timers
161+
162+
test-timers-clean:
163+
$(MAKE) --directory=tools clean
164+
158165
apidoc_sources = $(wildcard doc/api/*.markdown)
159166
apidocs = $(addprefix out/,$(apidoc_sources:.markdown=.html)) \
160167
$(addprefix out/,$(apidoc_sources:.markdown=.json))

deps/npm/.eslintrc

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"env" : {
3+
"node" : true
4+
},
5+
"rules" : {
6+
"curly" : 0,
7+
"no-lonely-if" : 1,
8+
"no-mixed-requires" : 0,
9+
"no-underscore-dangle" : 0,
10+
"no-unused-vars" : [2, {"vars" : "all", "args" : "after-used"}],
11+
"no-use-before-define" : [2, "nofunc"],
12+
"quotes" : [1, "double", "avoid-escape"],
13+
"semi" : [2, "never"],
14+
"space-after-keywords" : 1,
15+
"space-infix-ops" : 0,
16+
"strict" : 0
17+
}
18+
}

deps/npm/.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ npm-debug.log
77
/test/packages/npm-test-depends-on-spark/which-spark.log
88
/test/packages/test-package/random-data.txt
99
/test/root
10+
node_modules/marked
1011
node_modules/ronn
1112
node_modules/tap
1213
node_modules/.bin

deps/npm/.tern-project

-7
This file was deleted.

deps/npm/Makefile

+9-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ dev: install
6969
link: uninstall
7070
node cli.js link -f
7171

72-
clean: ronnclean doc-clean uninstall
72+
clean: markedclean ronnclean doc-clean uninstall
7373
rm -rf npmrc
7474
node cli.js cache clean
7575

@@ -78,12 +78,16 @@ uninstall:
7878

7979
doc: $(mandocs) $(htmldocs)
8080

81+
markedclean:
82+
rm -rf node_modules/marked node_modules/.bin/marked .building_marked
83+
8184
ronnclean:
8285
rm -rf node_modules/ronn node_modules/.bin/ronn .building_ronn
8386

8487
docclean: doc-clean
8588
doc-clean:
8689
rm -rf \
90+
.building_marked \
8791
.building_ronn \
8892
html/doc \
8993
html/api \
@@ -149,6 +153,10 @@ html/doc/misc/%.html: doc/misc/%.md $(html_docdeps)
149153
scripts/doc-build.sh $< $@
150154

151155

156+
marked: node_modules/.bin/marked
157+
158+
node_modules/.bin/marked:
159+
node cli.js install marked --no-global
152160

153161
ronn: node_modules/.bin/ronn
154162

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ npm-link(3) -- Symlink a package folder
33

44
## SYNOPSIS
55

6-
npm.command.link(callback)
7-
npm.command.link(packages, callback)
6+
npm.commands.link(callback)
7+
npm.commands.link(packages, callback)
88

99
## DESCRIPTION
1010

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ npm-explore(1) -- Browse an installed package
33

44
## SYNOPSIS
55

6-
npm explore <name>[@<version>] [ -- <cmd>]
6+
npm explore <name> [ -- <cmd>]
77

88
## DESCRIPTION
99

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

-9
Original file line numberDiff line numberDiff line change
@@ -163,15 +163,6 @@ shrinkwrap will implicitly be included in A's shrinkwrap.
163163

164164
### Caveats
165165

166-
Shrinkwrap files only lock down package versions, not actual package
167-
contents. While discouraged, a package author can republish an
168-
existing version of a package, causing shrinkwrapped packages using
169-
that version to pick up different code than they were before. If you
170-
want to avoid any risk that a byzantine author replaces a package
171-
you're using with code that breaks your application, you could modify
172-
the shrinkwrap file to use git URL references rather than version
173-
numbers so that npm always fetches all packages from git.
174-
175166
If you wish to lock down the specific bytes included in a package, for
176167
example to have 100% confidence in being able to reproduce a
177168
deployment or build, then you ought to check your dependencies into

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

+9
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,15 @@ to trust only that specific signing authority.
146146

147147
See also the `strict-ssl` config.
148148

149+
### cafile
150+
151+
* Default: `null`
152+
* Type: path
153+
154+
A path to a file containing one or multiple Certificate Authority signing
155+
certificates. Similar to the `ca` setting, but allows for multiple CA's, as
156+
well as for the CA information to be stored in a file on disk.
157+
149158
### cache
150159

151160
* Default: Windows: `%AppData%\npm-cache`, Posix: `~/.npm`

deps/npm/html/doc/README.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ <h2 id="legal-stuff">Legal Stuff</h2>
141141
<p>If you have a complaint about a package in the public npm registry,
142142
and cannot <a href="https://www.npmjs.org/doc/misc/npm-disputes.html">resolve it with the package
143143
owner</a>, please email
144-
<a href="&#109;&#97;&#x69;&#x6c;&#116;&#111;&#58;&#115;&#117;&#x70;&#112;&#111;&#114;&#116;&#64;&#110;&#x70;&#109;&#x6a;&#x73;&#x2e;&#x63;&#x6f;&#x6d;">&#115;&#117;&#x70;&#112;&#111;&#114;&#116;&#64;&#110;&#x70;&#109;&#x6a;&#x73;&#x2e;&#x63;&#x6f;&#x6d;</a> and explain the situation.</p>
144+
<a href="&#x6d;&#x61;&#x69;&#x6c;&#116;&#x6f;&#58;&#115;&#117;&#x70;&#112;&#x6f;&#114;&#116;&#64;&#110;&#112;&#109;&#x6a;&#x73;&#46;&#x63;&#x6f;&#x6d;">&#115;&#117;&#x70;&#112;&#x6f;&#114;&#116;&#64;&#110;&#112;&#109;&#x6a;&#x73;&#46;&#x63;&#x6f;&#x6d;</a> and explain the situation.</p>
145145
<p>Any data published to The npm Registry (including user account
146146
information) may be removed or modified at the sole discretion of the
147147
npm server administrators.</p>
@@ -161,7 +161,7 @@ <h2 id="bugs">BUGS</h2>
161161
<li>web:
162162
<a href="https://github.com/npm/npm/issues">https://github.com/npm/npm/issues</a></li>
163163
<li>email:
164-
<a href="&#x6d;&#x61;&#105;&#108;&#116;&#x6f;&#x3a;&#x6e;&#x70;&#x6d;&#x2d;&#x40;&#103;&#111;&#111;&#x67;&#x6c;&#101;&#x67;&#x72;&#x6f;&#x75;&#112;&#x73;&#x2e;&#x63;&#111;&#109;">&#x6e;&#x70;&#x6d;&#x2d;&#x40;&#103;&#111;&#111;&#x67;&#x6c;&#101;&#x67;&#x72;&#x6f;&#x75;&#112;&#x73;&#x2e;&#x63;&#111;&#109;</a></li>
164+
<a href="&#x6d;&#97;&#x69;&#108;&#116;&#x6f;&#x3a;&#110;&#x70;&#x6d;&#x2d;&#x40;&#x67;&#x6f;&#111;&#x67;&#x6c;&#x65;&#103;&#x72;&#111;&#x75;&#112;&#x73;&#46;&#99;&#111;&#x6d;">&#110;&#x70;&#x6d;&#x2d;&#x40;&#x67;&#x6f;&#111;&#x67;&#x6c;&#x65;&#103;&#x72;&#111;&#x75;&#112;&#x73;&#46;&#99;&#111;&#x6d;</a></li>
165165
</ul>
166166
<p>Be sure to include <em>all</em> of the output from the npm command that didn&#39;t work
167167
as expected. The <code>npm-debug.log</code> file is also helpful to provide.</p>
@@ -186,5 +186,5 @@ <h2 id="see-also">SEE ALSO</h2>
186186
<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>
187187
<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>
188188
</table>
189-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].14</p>
189+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].21</p>
190190

deps/npm/html/doc/api/npm-bin.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
2828
<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>
2929
<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>
3030
</table>
31-
<p id="footer">npm-bin &mdash; [email protected].14</p>
31+
<p id="footer">npm-bin &mdash; [email protected].21</p>
3232

deps/npm/html/doc/api/npm-bugs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3333
<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>
3434
<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>
3535
</table>
36-
<p id="footer">npm-bugs &mdash; [email protected].14</p>
36+
<p id="footer">npm-bugs &mdash; [email protected].21</p>
3737

deps/npm/html/doc/api/npm-cache.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
4242
<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>
4343
<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>
4444
</table>
45-
<p id="footer">npm-cache &mdash; [email protected].14</p>
45+
<p id="footer">npm-cache &mdash; [email protected].21</p>
4646

deps/npm/html/doc/api/npm-commands.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ <h2 id="see-also">SEE ALSO</h2>
3636
<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>
3737
<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>
3838
</table>
39-
<p id="footer">npm-commands &mdash; [email protected].14</p>
39+
<p id="footer">npm-commands &mdash; [email protected].21</p>
4040

deps/npm/html/doc/api/npm-config.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ <h2 id="see-also">SEE ALSO</h2>
5757
<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>
5858
<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>
5959
</table>
60-
<p id="footer">npm-config &mdash; [email protected].14</p>
60+
<p id="footer">npm-config &mdash; [email protected].21</p>
6161

deps/npm/html/doc/api/npm-deprecate.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ <h2 id="see-also">SEE ALSO</h2>
4747
<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>
4848
<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>
4949
</table>
50-
<p id="footer">npm-deprecate &mdash; [email protected].14</p>
50+
<p id="footer">npm-deprecate &mdash; [email protected].21</p>
5151

deps/npm/html/doc/api/npm-docs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3333
<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>
3434
<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>
3535
</table>
36-
<p id="footer">npm-docs &mdash; [email protected].14</p>
36+
<p id="footer">npm-docs &mdash; [email protected].21</p>
3737

deps/npm/html/doc/api/npm-edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3636
<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>
3737
<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>
3838
</table>
39-
<p id="footer">npm-edit &mdash; [email protected].14</p>
39+
<p id="footer">npm-edit &mdash; [email protected].21</p>
4040

deps/npm/html/doc/api/npm-explore.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ <h2 id="synopsis">SYNOPSIS</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-explore &mdash; [email protected].14</p>
34+
<p id="footer">npm-explore &mdash; [email protected].21</p>
3535

deps/npm/html/doc/api/npm-help-search.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ <h2 id="synopsis">SYNOPSIS</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-help-search &mdash; [email protected].14</p>
47+
<p id="footer">npm-help-search &mdash; [email protected].21</p>
4848

deps/npm/html/doc/api/npm-init.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ <h2 id="see-also">SEE ALSO</h2>
3939
<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>
4040
<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>
4141
</table>
42-
<p id="footer">npm-init &mdash; [email protected].14</p>
42+
<p id="footer">npm-init &mdash; [email protected].21</p>
4343

deps/npm/html/doc/api/npm-install.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3232
<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>
3333
<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>
3434
</table>
35-
<p id="footer">npm-install &mdash; [email protected].14</p>
35+
<p id="footer">npm-install &mdash; [email protected].21</p>
3636

deps/npm/html/doc/api/npm-link.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
<h1><a href="../api/npm-link.html">npm-link</a></h1> <p>Symlink a package folder</p>
1313
<h2 id="synopsis">SYNOPSIS</h2>
14-
<pre><code>npm.command.link(callback)
15-
npm.command.link(packages, callback)
14+
<pre><code>npm.commands.link(callback)
15+
npm.commands.link(packages, callback)
1616
</code></pre><h2 id="description">DESCRIPTION</h2>
1717
<p>Package linking is a two-step process.</p>
1818
<p>Without parameters, link will create a globally-installed
@@ -42,5 +42,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
4242
<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>
4343
<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>
4444
</table>
45-
<p id="footer">npm-link &mdash; [email protected].14</p>
45+
<p id="footer">npm-link &mdash; [email protected].21</p>
4646

deps/npm/html/doc/api/npm-load.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3737
<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>
3838
<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>
3939
</table>
40-
<p id="footer">npm-load &mdash; [email protected].14</p>
40+
<p id="footer">npm-load &mdash; [email protected].21</p>
4141

deps/npm/html/doc/api/npm-ls.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ <h3 id="global">global</h3>
6363
<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>
6464
<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>
6565
</table>
66-
<p id="footer">npm-ls &mdash; [email protected].14</p>
66+
<p id="footer">npm-ls &mdash; [email protected].21</p>
6767

deps/npm/html/doc/api/npm-outdated.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
2828
<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>
2929
<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>
3030
</table>
31-
<p id="footer">npm-outdated &mdash; [email protected].14</p>
31+
<p id="footer">npm-outdated &mdash; [email protected].21</p>
3232

deps/npm/html/doc/api/npm-owner.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ <h2 id="see-also">SEE ALSO</h2>
4747
<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>
4848
<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>
4949
</table>
50-
<p id="footer">npm-owner &mdash; [email protected].14</p>
50+
<p id="footer">npm-owner &mdash; [email protected].21</p>
5151

deps/npm/html/doc/api/npm-pack.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3333
<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>
3434
<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>
3535
</table>
36-
<p id="footer">npm-pack &mdash; [email protected].14</p>
36+
<p id="footer">npm-pack &mdash; [email protected].21</p>
3737

deps/npm/html/doc/api/npm-prefix.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
2929
<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>
3030
<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>
3131
</table>
32-
<p id="footer">npm-prefix &mdash; [email protected].14</p>
32+
<p id="footer">npm-prefix &mdash; [email protected].21</p>
3333

deps/npm/html/doc/api/npm-prune.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3030
<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>
3131
<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>
3232
</table>
33-
<p id="footer">npm-prune &mdash; [email protected].14</p>
33+
<p id="footer">npm-prune &mdash; [email protected].21</p>
3434

0 commit comments

Comments
 (0)