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 581e6de

Browse filesBrowse files
iarnaFishrock123
authored andcommitted
deps: upgrade npm to 3.10.2
Contains the following npm releases: - https://github.com/npm/npm/releases/tag/v3.9.6 - https://github.com/npm/npm/releases/tag/v3.10.0 - https://github.com/npm/npm/releases/tag/v3.10.1 - https://github.com/npm/npm/releases/tag/v3.10.2 PR-URL: #7410 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
1 parent 3cba8ac commit 581e6de
Copy full SHA for 581e6de

File tree

Expand file treeCollapse file tree

413 files changed

+12141
-12362
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

413 files changed

+12141
-12362
lines changed
Open diff view settings
Collapse file

‎deps/npm/.travis.yml‎

Copy file name to clipboardExpand all lines: deps/npm/.travis.yml
+8-3Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
language: node_js
22
node_js:
3-
- "6"
3+
# LTS is our most important target
44
- "4"
5+
# next LTS and master is next most important
6+
- "6"
7+
# still in LTS maintenance until fall 2016
8+
# (also still in wide use)
9+
- "0.10"
10+
# will be unsupported as soon as 6 becomes LTS and 7 released
511
- "5"
12+
# technically in LTS / distros, unbeloved
613
- "0.12"
7-
- "0.10"
8-
- "0.8"
914
env:
1015
- DEPLOY_VERSION=testing
1116
before_install:
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
@@ -402,3 +402,7 @@ Gianluca Casati <fibo@users.noreply.github.com>
402402
André Herculano <andresilveirah@gmail.com>
403403
Wyatt Preul <wpreul@gmail.com>
404404
Myles Borins <mborins@us.ibm.com>
405+
Elliot Lee <github.public@intelliot.com>
406+
Dmitry Kirilyuk <gk.joker@gmail.com>
407+
Aaron Tribou <aaron.tribou@gmail.com>
408+
Tapani Moilanen <moilanen.tapani@gmail.com>
Collapse file

‎deps/npm/CHANGELOG.md‎

Copy file name to clipboardExpand all lines: deps/npm/CHANGELOG.md
+435Lines changed: 435 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Large diffs are not rendered by default.
Collapse file

‎deps/npm/appveyor.yml‎

Copy file name to clipboardExpand all lines: deps/npm/appveyor.yml
+7-5Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@ environment:
22
matrix:
33
# LTS is our most important target
44
- nodejs_version: "4"
5-
# latest
6-
- nodejs_version: "5"
7-
# I like 0.10 better than 0.12
5+
# next LTS and master is next most important
6+
- nodejs_version: "6"
7+
# still in LTS maintenance until fall 2016
8+
# (also still in wide use)
89
- nodejs_version: "0.10"
10+
# will be unsupported as soon as 6 becomes LTS and 7 released
11+
- nodejs_version: "5"
12+
# technically in LTS / distros, unbeloved
913
- nodejs_version: "0.12"
10-
# EOL summer 2016, most likely
11-
- nodejs_version: "0.8"
1214
COVERALLS_REPO_TOKEN:
1315
secure: XdC0aySefK0HLh1GNk6aKrzZPbCfPQLyA4mYtFGEp4DrTuZA/iuCUS0LDqFYO8JQ
1416
platform:
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/doc/cli/npm-shrinkwrap.md
+10Lines changed: 10 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,14 @@ resolution using "version" if one isn't.
109109

110110
2. The tree is walked and any missing dependencies are installed in the usual fashion.
111111

112+
If `preshrinkwrap`, `shrinkwrap` or `postshrinkwrap` are in the `scripts` property of the
113+
`package.json`, they will be executed by running `npm shrinkwrap`.
114+
`preshrinkwrap` and `shrinkwrap` are executed before the shrinkwrap, `postshrinkwrap` is
115+
executed afterwards. For example to run some postprocessing on the generated file:
116+
117+
"scripts": { "postshrinkwrap": "node fix-shrinkwrap.js" }
118+
119+
112120
### Using shrinkwrapped packages
113121

114122
Using a shrinkwrapped package is no different than using any other
@@ -174,5 +182,7 @@ contents rather than versions.
174182
## SEE ALSO
175183

176184
* npm-install(1)
185+
* npm-run-script(1)
186+
* npm-scripts(7)
177187
* package.json(5)
178188
* npm-ls(1)
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/doc/files/package.json.md
+1Lines changed: 1 addition & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ Conversely, some files are always ignored:
202202
* `npm-debug.log`
203203
* `.npmrc`
204204
* `node_modules`
205+
* `config.gypi`
205206

206207
## main
207208

Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/doc/misc/npm-config.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ Set to true to run in "production" mode.
676676

677677
### progress
678678

679-
* Default: true
679+
* Default: true, unless TRAVIS or CI env vars set.
680680
* Type: Boolean
681681

682682
When set to `true`, npm will display a progress bar during time intensive
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/doc/misc/npm-scripts.md
+4-1Lines changed: 4 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,14 @@ following scripts:
3232
* prerestart, restart, postrestart:
3333
Run by the `npm restart` command. Note: `npm restart` will run the
3434
stop and start scripts if no `restart` script is provided.
35+
* preshrinkwrap, shrinkwrap, postshrinkwrap:
36+
Run by the `npm shrinkwrap` command.
3537

3638
Additionally, arbitrary scripts can be executed by running `npm
3739
run-script <stage>`. *Pre* and *post* commands with matching
3840
names will be run for those as well (e.g. `premyscript`, `myscript`,
39-
`postmyscript`).
41+
`postmyscript`). Scripts from dependencies can be run with `npm explore
42+
<pkg> -- npm run <stage>`.
4043

4144
## COMMON USES
4245

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.5</p>
129+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@3.10.2</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.5</p>
87+
<p id="footer">npm-access &mdash; npm@3.10.2</p>
8888

0 commit comments

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