Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 701e699

Browse filesBrowse files
zkatevanlucas
authored andcommitted
deps: upgrade npm to 3.9.5
PR-URL: #7139 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
1 parent e2f6f80 commit 701e699
Copy full SHA for 701e699

File tree

Expand file treeCollapse file tree

156 files changed

+552
-395
lines changed
Open diff view settings
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

156 files changed

+552
-395
lines changed
Open diff view settings
Collapse file

‎deps/npm/.npmignore‎

Copy file name to clipboardExpand all lines: deps/npm/.npmignore
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,5 @@ html/*.png
2828
*.pyc
2929

3030
/test/tap/builtin-config
31+
32+
.nyc_output
Collapse file

‎deps/npm/AUTHORS‎

Copy file name to clipboardExpand all lines: deps/npm/AUTHORS
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,3 +398,7 @@ Rachel Evans <git@rve.org.uk>
398398
Sam Minnee <sam@silverstripe.com>
399399
Zirak <zirakertan@gmail.com>
400400
Daniel Lupu <lupu.daniel.f@gmail.com>
401+
Gianluca Casati <fibo@users.noreply.github.com>
402+
André Herculano <andresilveirah@gmail.com>
403+
Wyatt Preul <wpreul@gmail.com>
404+
Myles Borins <mborins@us.ibm.com>
Collapse file

‎deps/npm/CHANGELOG.md‎

Copy file name to clipboardExpand all lines: deps/npm/CHANGELOG.md
+91Lines changed: 91 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,94 @@
1+
### v3.9.5 (2016-05-27):
2+
3+
Just a quick point release. We had an issue where I (Kat) included the
4+
`.nyc_output/` directory in `npm@3.9.3` and `npm@3.9.4`. The issue got reported
5+
right after that second release
6+
([`#12873`](https://github.com/npm/npm/issues/12873)), and now there's this
7+
small point release that's there to fix the issue sooner.
8+
9+
* [`f96aea0`](https://github.com/npm/npm/commit/f96aea085be981cdb59bd09f16da40717426f981)
10+
[#12878](https://github.com/npm/npm/pull/12878)
11+
Ignore `.nyc_output` to avoid an accidental publish or commit filled with
12+
code coverage data.
13+
([@TheAlphaNerd](https://github.com/TheAlphaNerd))
14+
15+
### v3.9.4 (2016-05-26):
16+
17+
Hey all! It's that time again!
18+
19+
This week continues our current `big-bug` squashing push, although there's none
20+
that are ready to release quite yet -- we're working on it!
21+
22+
It's also worth noting that we're entering the main part of conference season,
23+
so you can probably expect a bit of a dev slowdown as a lot of us wombats attend
24+
or speak at the various conferences. Remember [npm.camp](npm.camp) is happening
25+
in 2 months and the lineup is looking pretty great! Tickets are still on sale.
26+
Come hang out with us! WOO FUN! 🎉😸
27+
28+
#### BUGFIX
29+
30+
* [`cac0038`](https://github.com/npm/npm/commit/cac0038868b18295f9f299e762e20034f32a3e11)
31+
[#12845](https://github.com/npm/npm/pull/12845)
32+
Progress bar during tarball packing now prints `pack:packagename` instead of
33+
`pack:[object Object]`.
34+
([@iarna](https://github.com/iarna))
35+
36+
#### DOC UPDATES
37+
38+
* [`0b81622`](https://github.com/npm/npm/commit/0b816225c743c9203db5d92fb4dd3a9293833298)
39+
[#12840](https://github.com/npm/npm/pull/12840)
40+
Remove sexualized language from comment in code.
41+
([@geek](https://github.com/geek))
42+
* [`d6dff24`](https://github.com/npm/npm/commit/d6dff2481cb587c392f22afb893ac3136371a64c)
43+
[#12802](https://github.com/npm/npm/pull/12802)
44+
Small grammar fix in `cli/npm.md`.
45+
([@andresilveira](https://github.com/andresilveira))
46+
* [`cb38e0f`](https://github.com/npm/npm/commit/cb38e0fff82a6c1c110026b95b07a8c32e27ec01)
47+
[#12782](https://github.com/npm/npm/pull/12782)
48+
Documents that `NOTICE` files started getting included after
49+
[npm/fstream-npm#17](https://github.com/npm/fstream-npm/pull/17).
50+
([@SimenB](https://github.com/SimenB))
51+
* [`70a3ae4`](https://github.com/npm/npm/commit/70a3ae4d4ec76b3ec51f00bf5261f1147829f9fe)
52+
[#12776](https://github.com/npm/npm/pull/12776)
53+
`npm run-script` used to have a `<pkg>` argument that allowed you to target
54+
specific packages' scripts. This was removed as one of the breaking changes
55+
for `npm@2`.
56+
This patch removes a mention of that argument, which really doesn't exist
57+
anymore.
58+
([@fibo](https://github.com/fibo))
59+
60+
#### DEP UPDATES
61+
62+
* [`4a4470d`](https://github.com/npm/npm/commit/4a4470ddd1d9b0b62cb94f3bff5ab6b8e6db527a)
63+
`aproba@1.0.3`
64+
([@iarna](https://github.com/iarna))
65+
66+
#### TEST IMPROVEMENTS
67+
68+
So it turns out, `t.comment` in `tap` is actually pretty nice!
69+
There's also a couple other test improvements by Rebecca landing here.
70+
71+
* [`9fd04dd`](https://github.com/npm/npm/commit/9fd04dd6be493465d7ac5f14dd9328e66069c1bf)
72+
[#12851](https://github.com/npm/npm/pull/12851)
73+
Rewrite `shrinkwrap-prod-dependency-also` test to use `common.npm`
74+
([@iarna](https://github.com/iarna))
75+
* [`3bc4a8e`](https://github.com/npm/npm/commit/3bc4a8ee58cb0e0adc84b4f135330f2b1e20d992)
76+
[#12851](https://github.com/npm/npm/pull/12851)
77+
Clean up `rm-linked` test.
78+
([@iarna](https://github.com/iarna))
79+
* [`bf7f7f2`](https://github.com/npm/npm/commit/bf7f7f273a794f7573bbbc84b1c216fdcd9e0ef9)
80+
[#12851](https://github.com/npm/npm/pull/12851)
81+
Clean up `outdated-symlink` test.
82+
([@iarna](https://github.com/iarna))
83+
* [`ca0baa4`](https://github.com/npm/npm/commit/ca0baa4dac85b1df4e26ef0c73d39314ca6858ca)
84+
[#12851](https://github.com/npm/npm/pull/12851)
85+
Improve diagnostics for `shrinkwrap-scoped-auth` test.
86+
([@iarna](https://github.com/iarna))
87+
* [`fbec9fd`](https://github.com/npm/npm/commit/fbec9fd5bb0abce589120d14c1f2b03b58cecce1)
88+
[#12851](https://github.com/npm/npm/pull/12851)
89+
Rewrite `shrinkwrap-dev-dependency` test to use `common.npm`.
90+
([@iarna](https://github.com/iarna))
91+
192
### v3.9.3 (2016-05-19):
293

394
This week continues our `big-bug` squashing adventure! Things are churning along
Collapse file

‎deps/npm/doc/cli/npm.md‎

Copy file name to clipboardExpand all lines: deps/npm/doc/cli/npm.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ requires compiling of C++ Code, npm will use
4141
[node-gyp](https://github.com/TooTallNate/node-gyp) for that task.
4242
For a Unix system, [node-gyp](https://github.com/TooTallNate/node-gyp)
4343
needs Python, make and a buildchain like GCC. On Windows,
44-
Python and Microsoft Visual Studio C++ is needed. Python 3 is
44+
Python and Microsoft Visual Studio C++ are needed. Python 3 is
4545
not supported by [node-gyp](https://github.com/TooTallNate/node-gyp).
4646
For more information visit
4747
[the node-gyp repository](https://github.com/TooTallNate/node-gyp) and
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/doc/files/package.json.md
+2-1Lines changed: 2 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -183,9 +183,10 @@ Certain files are always included, regardless of settings:
183183
* `README`
184184
* `CHANGES` / `CHANGELOG` / `HISTORY`
185185
* `LICENSE` / `LICENCE`
186+
* `NOTICE`
186187
* The file in the "main" field
187188

188-
`README`, `CHANGES` & `LICENSE` can have any case and extension.
189+
`README`, `CHANGES`, `LICENSE` & `NOTICE` can have any case and extension.
189190

190191
Conversely, some files are always ignored:
191192

Collapse file

‎deps/npm/doc/misc/npm-scripts.md‎

Copy file name to clipboardExpand all lines: deps/npm/doc/misc/npm-scripts.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ following scripts:
3434
stop and start scripts if no `restart` script is provided.
3535

3636
Additionally, arbitrary scripts can be executed by running `npm
37-
run-script <pkg> <stage>`. *Pre* and *post* commands with matching
37+
run-script <stage>`. *Pre* and *post* commands with matching
3838
names will be run for those as well (e.g. `premyscript`, `myscript`,
3939
`postmyscript`).
4040

Collapse file

‎deps/npm/html/doc/README.html‎

Copy file name to clipboardExpand all lines: deps/npm/html/doc/README.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,5 @@ <h2 id="see-also">SEE ALSO</h2>
126126
<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>
127127
<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>
128128
</table>
129-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@3.9.3</p>
129+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@3.9.5</p>
130130

Collapse file

‎deps/npm/html/doc/cli/npm-access.html‎

Copy file name to clipboardExpand all lines: deps/npm/html/doc/cli/npm-access.html
+1-1Lines changed: 1 addition & 1 deletion
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; npm@3.9.3</p>
87+
<p id="footer">npm-access &mdash; npm@3.9.5</p>
8888

Collapse file

‎deps/npm/html/doc/cli/npm-adduser.html‎

Copy file name to clipboardExpand all lines: deps/npm/html/doc/cli/npm-adduser.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ <h2 id="see-also">SEE ALSO</h2>
7272
<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>
7373
<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>
7474
</table>
75-
<p id="footer">npm-adduser &mdash; npm@3.9.3</p>
75+
<p id="footer">npm-adduser &mdash; npm@3.9.5</p>
7676

Collapse file

‎deps/npm/html/doc/cli/npm-bin.html‎

Copy file name to clipboardExpand all lines: deps/npm/html/doc/cli/npm-bin.html
+1-1Lines changed: 1 addition & 1 deletion
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; npm@3.9.3</p>
38+
<p id="footer">npm-bin &mdash; npm@3.9.5</p>
3939

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.