Skip to content

Commit bb9316d

Browse files
committed
npm 1.1.0-beta-2
1 parent f490934 commit bb9316d

File tree

160 files changed

+936
-605
lines changed

Some content is hidden

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

160 files changed

+936
-605
lines changed

deps/npm/.gitmodules

+12-6
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,25 @@
3636
url = https://github.com/mikeal/request.git
3737
[submodule "node_modules/tar"]
3838
path = node_modules/tar
39-
url = git://github.com/isaacs/node-tar.git
39+
url = https://github.com/isaacs/node-tar.git
4040
[submodule "node_modules/fstream"]
4141
path = node_modules/fstream
42-
url = git://github.com/isaacs/fstream.git
42+
url = https://github.com/isaacs/fstream.git
4343
[submodule "node_modules/inherits"]
4444
path = node_modules/inherits
45-
url = git://github.com/isaacs/inherits.git
45+
url = https://github.com/isaacs/inherits.git
4646
[submodule "node_modules/block-stream"]
4747
path = node_modules/block-stream
48-
url = git://github.com/isaacs/block-stream.git
48+
url = https://github.com/isaacs/block-stream.git
4949
[submodule "node_modules/mkdirp"]
5050
path = node_modules/mkdirp
51-
url = git://github.com/isaacs/node-mkdirp.git
51+
url = https://github.com/isaacs/node-mkdirp.git
5252
[submodule "node_modules/fast-list"]
5353
path = node_modules/fast-list
54-
url = git://github.com/isaacs/fast-list.git
54+
url = https://github.com/isaacs/fast-list.git
55+
[submodule "node_modules/read"]
56+
path = node_modules/read
57+
url = https://github.com/isaacs/read.git
58+
[submodule "node_modules/lru-cache"]
59+
path = node_modules/lru-cache
60+
url = https://github.com/isaacs/node-lru-cache.git

deps/npm/.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
language: node_js
2+
before_install: "make &>out || cat out; rm out"
3+
node_js:
4+
- 0.6

deps/npm/bin/npm-cli.js

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ if (typeof WScript !== "undefined") {
1212
return
1313
}
1414

15+
16+
process.title = "npm"
17+
1518
var log = require("../lib/utils/log.js")
1619
log.waitForConfig()
1720
log.info("ok", "it worked if it ends with")

deps/npm/doc/cli/config.md

+23-2
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,14 @@ The location of npm's cache directory. See `npm-cache(1)`
225225
If false, never shows colors. If `"always"` then always shows colors.
226226
If true, then only prints color codes for tty file descriptors.
227227

228+
### coverage
229+
230+
* Default: false
231+
* Type: Boolean
232+
233+
A flag to tell test-harness to run with their coverage options enabled,
234+
if they respond to the `npm_config_coverage` environment variable.
235+
228236
### depth
229237

230238
* Default: Infinity
@@ -379,13 +387,16 @@ The location to write log output.
379387

380388
### loglevel
381389

382-
* Default: "warn"
390+
* Default: "http"
383391
* Type: String
384-
* Values: "silent", "win", "error", "warn", "info", "verbose", "silly"
392+
* Values: "silent", "win", "error", "warn", "http", "info", "verbose", "silly"
385393

386394
What level of logs to report. On failure, *all* logs are written to
387395
`npm-debug.log` in the current working directory.
388396

397+
Any logs of a higher level than the setting are shown.
398+
The default is "http", which shows http, warn, and error output.
399+
389400
### logprefix
390401

391402
* Default: true on Posix, false on Windows
@@ -537,6 +548,16 @@ Space-separated options that are always passed to search.
537548

538549
Space-separated options that limit the results from search.
539550

551+
### searchsort
552+
553+
* Default: "name"
554+
* Type: String
555+
* Values: "name", "-name", "date", "-date", "description",
556+
"-description", "keywords", "-keywords"
557+
558+
Indication of which field to sort search results by. Prefix with a `-`
559+
character to indicate reverse sort.
560+
540561
### shell
541562

542563
* Default: SHELL environment variable, or "bash" on Posix, or "cmd" on

deps/npm/doc/cli/developers.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ You can give publish a url to a tarball, or a filename of a tarball,
150150
or a path to a folder.
151151

152152
Note that pretty much **everything in that folder will be exposed**
153-
by default. So, if you have secret stuff in there, use a `.npminclude`
154-
or `.npmignore` file to list out the globs to include/ignore, or publish
153+
by default. So, if you have secret stuff in there, use a
154+
`.npmignore` file to list out the globs to ignore, or publish
155155
from a fresh checkout.
156156

157157
## Brag about it

deps/npm/doc/cli/search.md

+3-22
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,9 @@ npm-search(1) -- Search for packages
99

1010
Search the registry for packages matching the search terms.
1111

12-
## CONFIGURATION
13-
14-
### description
15-
16-
* Default: true
17-
* Type: Boolean
18-
19-
Show the description in `npm search`
20-
21-
### searchopts
22-
23-
* Default: ""
24-
* Type: String
25-
26-
Space-separated options that are always passed to search.
27-
28-
### searchexclude
29-
30-
* Default: ""
31-
* Type: String
32-
33-
Space-separated options that limit the results from search.
12+
If a term starts with `/`, then it's interpreted as a regular expression.
13+
A trailing `/` will be ignored in this case. (Note that many regular
14+
expression characters must be escaped or quoted in most shells.)
3415

3516
## SEE ALSO
3617

deps/npm/html/api/bin.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
1919
<p>This function should not be used programmatically. Instead, just refer
2020
to the <code>npm.bin</code> member.</p>
2121
</div>
22-
<p id="footer">bin &mdash; [email protected]alpha-6</p>
22+
<p id="footer">bin &mdash; [email protected]beta-2</p>
2323
<script>
2424
;(function () {
2525
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/bugs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
2525
<p>This command will launch a browser, so this command may not be the most
2626
friendly for programmatic use.</p>
2727
</div>
28-
<p id="footer">bugs &mdash; [email protected]alpha-6</p>
28+
<p id="footer">bugs &mdash; [email protected]beta-2</p>
2929
<script>
3030
;(function () {
3131
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/commands.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h2 id="SEE-ALSO">SEE ALSO</h2>
2828

2929
<ul><li><a href="../doc/index.html">index(1)</a></li></ul>
3030
</div>
31-
<p id="footer">commands &mdash; [email protected]alpha-6</p>
31+
<p id="footer">commands &mdash; [email protected]beta-2</p>
3232
<script>
3333
;(function () {
3434
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/config.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h2 id="SEE-ALSO">SEE ALSO</h2>
3333

3434
<ul><li><a href="../api/npm.html">npm(3)</a></li></ul>
3535
</div>
36-
<p id="footer">config &mdash; [email protected]alpha-6</p>
36+
<p id="footer">config &mdash; [email protected]beta-2</p>
3737
<script>
3838
;(function () {
3939
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/deprecate.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ <h2 id="SEE-ALSO">SEE ALSO</h2>
3030

3131
<ul><li><a href="../api/publish.html">publish(3)</a></li><li><a href="../api/unpublish.html">unpublish(3)</a></li><li><a href="../doc/registry.html">registry(1)</a></li></ul>
3232
</div>
33-
<p id="footer">deprecate &mdash; [email protected]alpha-6</p>
33+
<p id="footer">deprecate &mdash; [email protected]beta-2</p>
3434
<script>
3535
;(function () {
3636
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/docs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
2525
<p>This command will launch a browser, so this command may not be the most
2626
friendly for programmatic use.</p>
2727
</div>
28-
<p id="footer">docs &mdash; [email protected]alpha-6</p>
28+
<p id="footer">docs &mdash; [email protected]beta-2</p>
2929
<script>
3030
;(function () {
3131
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
3030
<p>Since this command opens an editor in a new process, be careful about where
3131
and how this is used.</p>
3232
</div>
33-
<p id="footer">edit &mdash; [email protected]alpha-6</p>
33+
<p id="footer">edit &mdash; [email protected]beta-2</p>
3434
<script>
3535
;(function () {
3636
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/explore.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
2424

2525
<p>The first element in the 'args' parameter must be a package name. After that is the optional command, which can be any number of strings. All of the strings will be combined into one, space-delimited command.</p>
2626
</div>
27-
<p id="footer">explore &mdash; [email protected]alpha-6</p>
27+
<p id="footer">explore &mdash; [email protected]beta-2</p>
2828
<script>
2929
;(function () {
3030
var wrapper = document.getElementById("wrapper")

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
3232

3333
<p>The silent parameter is not neccessary not used, but it may in the future.</p>
3434
</div>
35-
<p id="footer">help-search &mdash; [email protected]alpha-6</p>
35+
<p id="footer">help-search &mdash; [email protected]beta-2</p>
3636
<script>
3737
;(function () {
3838
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/init.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h2 id="SEE-ALSO">SEE ALSO</h2>
3535

3636
<p><a href="../doc/json.html">json(1)</a></p>
3737
</div>
38-
<p id="footer">init &mdash; [email protected]alpha-6</p>
38+
<p id="footer">init &mdash; [email protected]beta-2</p>
3939
<script>
4040
;(function () {
4141
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/install.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
2525
<p>Finally, 'callback' is a function that will be called when all packages have been
2626
installed or when an error has been encountered.</p>
2727
</div>
28-
<p id="footer">install &mdash; [email protected]alpha-6</p>
28+
<p id="footer">install &mdash; [email protected]beta-2</p>
2929
<script>
3030
;(function () {
3131
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/link.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
3939
<p>Now, any changes to the redis package will be reflected in
4040
the package in the current working directory</p>
4141
</div>
42-
<p id="footer">link &mdash; [email protected]alpha-6</p>
42+
<p id="footer">link &mdash; [email protected]beta-2</p>
4343
<script>
4444
;(function () {
4545
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/load.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
3232

3333
<p>For a list of all the available command-line configs, see <code>npm help config</code></p>
3434
</div>
35-
<p id="footer">load &mdash; [email protected]alpha-6</p>
35+
<p id="footer">load &mdash; [email protected]beta-2</p>
3636
<script>
3737
;(function () {
3838
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/ls.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ <h3 id="global">global</h3>
5353
This means that if a submodule a same dependency as a parent module, then the
5454
dependency will only be output once.</p>
5555
</div>
56-
<p id="footer">ls &mdash; [email protected]alpha-6</p>
56+
<p id="footer">ls &mdash; [email protected]beta-2</p>
5757
<script>
5858
;(function () {
5959
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/npm.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h2 id="SYNOPSIS">SYNOPSIS</h2>
2424

2525
<h2 id="VERSION">VERSION</h2>
2626

27-
<p>1.1.0-alpha-6</p>
27+
<p>1.1.0-beta-2</p>
2828

2929
<h2 id="DESCRIPTION">DESCRIPTION</h2>
3030

@@ -91,7 +91,7 @@ <h2 id="ABBREVS">ABBREVS</h2>
9191

9292
<pre><code>var cmd = npm.deref("unp") // cmd === "unpublish"</code></pre>
9393
</div>
94-
<p id="footer">npm &mdash; [email protected]alpha-6</p>
94+
<p id="footer">npm &mdash; [email protected]beta-2</p>
9595
<script>
9696
;(function () {
9797
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/outdated.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
1919

2020
<p>If the 'packages' parameter is left out, npm will check all packages.</p>
2121
</div>
22-
<p id="footer">outdated &mdash; [email protected]alpha-6</p>
22+
<p id="footer">outdated &mdash; [email protected]beta-2</p>
2323
<script>
2424
;(function () {
2525
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/owner.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h2 id="SEE-ALSO">SEE ALSO</h2>
3434

3535
<ul><li><a href="../api/publish.html">publish(3)</a></li><li><a href="../doc/registry.html">registry(1)</a></li></ul>
3636
</div>
37-
<p id="footer">owner &mdash; [email protected]alpha-6</p>
37+
<p id="footer">owner &mdash; [email protected]beta-2</p>
3838
<script>
3939
;(function () {
4040
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/pack.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
2525

2626
<p>If no arguments are supplied, then npm packs the current package folder.</p>
2727
</div>
28-
<p id="footer">pack &mdash; [email protected]alpha-6</p>
28+
<p id="footer">pack &mdash; [email protected]beta-2</p>
2929
<script>
3030
;(function () {
3131
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/prefix.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
2121

2222
<p>This function is not useful programmatically</p>
2323
</div>
24-
<p id="footer">prefix &mdash; [email protected]alpha-6</p>
24+
<p id="footer">prefix &mdash; [email protected]beta-2</p>
2525
<script>
2626
;(function () {
2727
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/prune.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
2323
<p>Extraneous packages are packages that are not listed on the parent
2424
package's dependencies list.</p>
2525
</div>
26-
<p id="footer">prune &mdash; [email protected]alpha-6</p>
26+
<p id="footer">prune &mdash; [email protected]beta-2</p>
2727
<script>
2828
;(function () {
2929
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/publish.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h2 id="SEE-ALSO">SEE ALSO</h2>
3232

3333
<ul><li><a href="../doc/registry.html">registry(1)</a></li><li><a href="../doc/adduser.html">adduser(1)</a></li><li><a href="../api/owner.html">owner(3)</a></li></ul>
3434
</div>
35-
<p id="footer">publish &mdash; [email protected]alpha-6</p>
35+
<p id="footer">publish &mdash; [email protected]beta-2</p>
3636
<script>
3737
;(function () {
3838
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/rebuild.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ <h2 id="CONFIGURATION">CONFIGURATION</h2>
2222

2323
<p>See <code>npm help build</code></p>
2424
</div>
25-
<p id="footer">rebuild &mdash; [email protected]alpha-6</p>
25+
<p id="footer">rebuild &mdash; [email protected]beta-2</p>
2626
<script>
2727
;(function () {
2828
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/restart.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ <h2 id="SEE-ALSO">SEE ALSO</h2>
2727

2828
<ul><li><a href="../api/start.html">start(3)</a></li><li><a href="../api/stop.html">stop(3)</a></li></ul>
2929
</div>
30-
<p id="footer">restart &mdash; [email protected]alpha-6</p>
30+
<p id="footer">restart &mdash; [email protected]beta-2</p>
3131
<script>
3232
;(function () {
3333
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/root.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
2121

2222
<p>This function is not useful programmatically.</p>
2323
</div>
24-
<p id="footer">root &mdash; [email protected]alpha-6</p>
24+
<p id="footer">root &mdash; [email protected]beta-2</p>
2525
<script>
2626
;(function () {
2727
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/run-script.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ <h2 id="SEE-ALSO">SEE ALSO</h2>
2929

3030
<ul><li><a href="../doc/scripts.html">scripts(1)</a></li><li><a href="../api/test.html">test(3)</a></li><li><a href="../api/start.html">start(3)</a></li><li><a href="../api/restart.html">restart(3)</a></li><li><a href="../api/stop.html">stop(3)</a></li></ul>
3131
</div>
32-
<p id="footer">run-script &mdash; [email protected]alpha-6</p>
32+
<p id="footer">run-script &mdash; [email protected]beta-2</p>
3333
<script>
3434
;(function () {
3535
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/search.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
3232
and doesn't try to read your mind (it doesn't do any verb tense matching or the
3333
like).</p>
3434
</div>
35-
<p id="footer">search &mdash; [email protected]alpha-6</p>
35+
<p id="footer">search &mdash; [email protected]beta-2</p>
3636
<script>
3737
;(function () {
3838
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/start.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
1919
<p>npm can run tests on multiple packages. Just specify multiple packages
2020
in the <code>packages</code> parameter.</p>
2121
</div>
22-
<p id="footer">start &mdash; [email protected]alpha-6</p>
22+
<p id="footer">start &mdash; [email protected]beta-2</p>
2323
<script>
2424
;(function () {
2525
var wrapper = document.getElementById("wrapper")

0 commit comments

Comments
 (0)