Skip to content

File tree

413 files changed

+12141
-12362
lines changed

Some content is hidden

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

413 files changed

+12141
-12362
lines changed

deps/npm/.travis.yml

Lines 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:

deps/npm/AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,3 +402,7 @@ Gianluca Casati <[email protected]>
402402
André Herculano <[email protected]>
403403
Wyatt Preul <[email protected]>
404404
Myles Borins <[email protected]>
405+
Elliot Lee <[email protected]>
406+
Dmitry Kirilyuk <[email protected]>
407+
Aaron Tribou <[email protected]>
408+
Tapani Moilanen <[email protected]>

deps/npm/CHANGELOG.md

Lines changed: 435 additions & 0 deletions
Large diffs are not rendered by default.

deps/npm/appveyor.yml

Lines 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:

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

Lines changed: 10 additions & 0 deletions
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)

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

Lines changed: 1 addition & 0 deletions
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

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

Lines changed: 1 addition & 1 deletion
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

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

Lines changed: 4 additions & 1 deletion
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

deps/npm/html/doc/README.html

Lines 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

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

Lines 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)