-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: #4110 Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: Myles Borins <[email protected]> Reviewed-By: James M Snell <[email protected]>
- Loading branch information
Showing
447 changed files
with
11,366 additions
and
5,950 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
language: node_js | ||
node_js: | ||
- "4.1" | ||
- "4.0" | ||
- "5" | ||
- "4" | ||
- iojs | ||
- "0.12" | ||
- "0.10" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -313,3 +313,7 @@ Jon Hall <[email protected]> | |
James Hartig <[email protected]> | ||
snopeks <[email protected]> | ||
Jason Kurian <[email protected]> | ||
Juan Caicedo <[email protected]> | ||
Ashley Williams <[email protected]> | ||
Andrew Marcinkevičius <[email protected]> | ||
Jorrit Schippers <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,168 @@ | ||
### v2.14.12 (2015-11-19): | ||
|
||
#### TEEN ORCS AT THE GATES | ||
|
||
This week heralds the general release of the primary npm registry's [new | ||
support for private packages for | ||
organizations](http://blog.npmjs.org/post/133542170540/private-packages-for-organizations). | ||
For many potential users, it's the missing piece needed to make it easy for you | ||
to move your organization's private work onto npm. And now it's here! The | ||
functionality to support it has been in place in the CLI for a while now, | ||
thanks to [@zkat](https://github.com/zkat)'s hard work. | ||
|
||
During our final testing before the release, our ace support team member | ||
[@snopeks](https://github.com/snopeks) noticed that there had been some drift | ||
between the CLI team's implementation and what npm was actually preparing to | ||
ship. In the interests of everyone having a smooth experience with this | ||
_extremely useful_ new feature, we quickly made a few changes to square up the | ||
CLI and the web site experiences. | ||
|
||
* [`0e8b15e`](https://github.com/npm/npm/commit/0e8b15e9fbc89e31bd00e573b648846beddfb835) | ||
[#9327](https://github.com/npm/npm/issues/9327) `npm access` no longer has | ||
problems when run in a directory that doesn't contain a `package.json`. | ||
([@othiym23](https://github.com/othiym23)) | ||
* [`c4e939c`](https://github.com/npm/npm/commit/c4e939c1d493601d25dcb88e6ffcca73076fd3fd) | ||
[npm/npm-registry-client#126](https://github.com/npm/npm-registry-client/issues/126) | ||
`[email protected]`: Allow the CLI to grant, revoke, and list | ||
permissions on unscoped (public) packages on the primary registry. | ||
([@othiym23](https://github.com/othiym23)) | ||
|
||
#### A BRIEF NOTE ON NPM'S BACKWARDS COMPATIBILITY | ||
|
||
We don't often have much to say about the changes we make to our internal | ||
testing and tooling, but I'm going to take this opportunity to reiterate that | ||
npm tries hard to maintain compatibility with a wide variety of Node versions. | ||
As this change shows, we want to ensure that npm works the same across: | ||
|
||
* Node.js 0.8 | ||
* Node.js 0.10 | ||
* Node.js 0.12 | ||
* the latest io.js release | ||
* Node.js 4 LTS | ||
* Node.js 5 | ||
|
||
Contributors who send us pull requests often notice that it's very rare that | ||
our tests pass across all of those versions (ironically, almost entirely due to | ||
the packages we use for testing instead of any issues within npm itself). We're | ||
currently beginning an effort, lasting the rest of 2015, to clean up our test | ||
suite, and not only get it passing on all of the above versions of Node.js, but | ||
working solidly on Windows as well. This is a compounding form of technical | ||
debt that we're finally paying down, and our hope is that cleaning up the tests | ||
will produce a more robust CLI that's a lot easier to write patches for. | ||
|
||
* [`d743620`](https://github.com/npm/npm/commit/d743620a0005213a65d25de771661b4d48a09717) | ||
[#10233](https://github.com/npm/npm/issues/10233) Update Node.js versions | ||
that Travis uses to test npm. ([@iarna](https://github.com/iarna)) | ||
|
||
#### TYPOS IN THE LICENSE, OH MY | ||
|
||
* [`58ac241`](https://github.com/npm/npm/commit/58ac241f556b2c202a8ee33321965e2540361ca7) | ||
[#10478](https://github.com/npm/npm/issues/10478) Correct two typos in npm's | ||
LICENSE. ([@jorrit](https://github.com/jorrit)) | ||
|
||
### v2.14.11 (2015-11-12): | ||
|
||
#### ASK FOR NOTHING, GET LATEST | ||
|
||
When you run `npm install foo`, you probably expect that you'll get the | ||
`latest` version of `foo`, whatever that is. And good news! That's what this | ||
change makes it do. | ||
|
||
We _think_ this is what everyone wants, but if this causes problems for you, we | ||
want to know! If it proves problematic for people we will consider reverting it | ||
(preferrably before this becomes `npm@latest`). | ||
|
||
Previously, when you ran `npm install foo` we would act as if you typed `npm | ||
install foo@*`. Now, like any range-type specifier, in addition to matching the | ||
range, it would also have to be `<=` the value of the `latest` dist-tag. | ||
Further, it would exclude prerelease versions from the list of versions | ||
considered for a match. | ||
|
||
This worked as expected most of the time, unless your `latest` was a prerelease | ||
version, in which case that version wouldn't be used, to everyone's surprise. | ||
|
||
* [`6f0a646`](https://github.com/npm/npm/commit/6f0a646cd865b24fe3ff25365bf5421780e63e01) | ||
[#10189](https://github.com/npm/npm/issues/10189) `[email protected]`: | ||
Change the default version from `*` to `latest`. | ||
([@zkat](https://github.com/zkat)) | ||
|
||
#### LICENSE CLARIFICATION | ||
|
||
* [`54a9046`](https://github.com/npm/npm/commit/54a90461f068ea89baa5d70248cdf1581897936d) | ||
[#10326](https://github.com/npm/npm/issues/10326) Clarify what-all is covered | ||
by npm's license and point to the registry's terms of use. | ||
([@kemitchell](https://github.com/kemitchell)) | ||
|
||
#### CLOSER TO GREEN TRAVIS | ||
|
||
* [`28efd3d`](https://github.com/npm/npm/commit/28efd3d7dfb2fa3755076ae706ea4d38c6ee6900) | ||
[#10232](https://github.com/npm/npm/issues/10232) `[email protected]`: Downgrade | ||
nock to a version that doesn't depend on streams2 in core so that more of our | ||
tests can pass in 0.8. ([@iarna](https://github.com/iarna)) | ||
|
||
#### A BUG FIX | ||
|
||
* [`eacac8f`](https://github.com/npm/npm/commit/eacac8f05014d15217c3d8264d0b00a72eafe2d2) | ||
[#9965](https://github.com/npm/npm/issues/9965) Fix a corrupt `package.json` | ||
file introduced by a merge conflict in | ||
[`022691a`](https://github.com/npm/npm/commit/022691a). | ||
([@waynebloss](https://github.com/waynebloss)) | ||
|
||
#### A DEPENDENCY UPGRADE | ||
|
||
* [`ea7d8e0`](https://github.com/npm/npm/commit/ea7d8e00a67a3d5877ed72c9728909c848468a9b) | ||
[npm/nopt#51](https://github.com/npm/nopt/pull/51) `[email protected]`: Allow | ||
types checked to be validated by passed-in name in addition to the JS name of | ||
the type / class. ([@wbecker](https://github.com/wbecker)) | ||
|
||
### v2.14.10 (2015-11-05): | ||
|
||
There's nothing in here that that isn't in the `[email protected]` release notes, but | ||
all of the commit shasums have been adjusted to be correct. Enjoy! | ||
|
||
#### BUG FIXES VIA DEPENDENCY UPDATES | ||
|
||
* [`204c558`](https://github.com/npm/npm/commit/204c558c06637a753c0b41d0cf19f564a1ac3715) | ||
[#8640](https://github.com/npm/npm/issues/8640) | ||
[npm/normalize-package-data#69](https://github.com/npm/normalize-package-data/pull/69) | ||
`[email protected]`: Fix a bug where if you didn't specify the | ||
name of a scoped module's binary, it would install it such that it was | ||
impossible to call it. ([@iarna](https://github.com/iarna)) | ||
* [`bbdf4ee`](https://github.com/npm/npm/commit/bbdf4ee0a3cd12be6a2ace255b67d573a72f1f8f) | ||
[npm/fstream-npm#14](https://github.com/npm/fstream-npm/pull/14) | ||
`[email protected]`: Only filter `config.gypi` when it's in the build | ||
directory. ([@mscdex](https://github.com/mscdex)) | ||
* [`d82ff81`](https://github.com/npm/npm/commit/d82ff81403e906931fac701775723626dcb443b3) | ||
[npm/fstream-npm#15](https://github.com/npm/fstream-npm/pull/15) | ||
`[email protected]`: Stop including directories that happened to have names | ||
matching whitelisted npm files in npm module tarballs. The most common cause | ||
was that if you had a README directory then everything in it would be | ||
included if wanted it or not. ([@taion](https://github.com/taion)) | ||
|
||
#### DOCUMENTATION FIXES | ||
|
||
* [`16361d1`](https://github.com/npm/npm/commit/16361d122f2ff6d1a4729c66153b7c24c698fd19) | ||
[#10036](https://github.com/npm/npm/pull/10036) Fix typo / over-abbreviation. | ||
([@ifdattic](https://github.com/ifdattic)) | ||
* [`d1343dd`](https://github.com/npm/npm/commit/d1343dda42f113dc322f95687f5a8c7d71a97c35) | ||
[#10176](https://github.com/npm/npm/pull/10176) Fix broken link, scopes => | ||
scope. ([@ashleygwilliams](https://github.com/ashleygwilliams)) | ||
* [`110663d`](https://github.com/npm/npm/commit/110663d000a3908a4853393d9abae481700cf4dc) | ||
[#9460](https://github.com/npm/npm/issue/9460) Specifying the default command | ||
run by "npm start" and the fact that you can pass it arguments. | ||
([@JuanCaicedo](https://github.com/JuanCaicedo)) | ||
|
||
#### DEPENDENCY UPDATES FOR THEIR OWN SAKE | ||
|
||
* [`7476d2d`](https://github.com/npm/npm/commit/7476d2d31552a41671c425aa7fcc2844e0381008) | ||
[npm/npmlog#19](https://github.com/npm/npmlog/pull/19) | ||
`[email protected]`: Make it possible to emit log messages with `error` as the | ||
prefix. | ||
([@bengl](https://github.com/bengl)) | ||
* [`6ca7888`](https://github.com/npm/npm/commit/6ca7888862cfe8bf802dc7c66632c102acd94cf5) | ||
`[email protected]`: Minor cleanups. | ||
([@KenanY](https://github.com/KenanY)) | ||
|
||
### v2.14.9 (2015-10-29): | ||
|
||
There's still life in `npm@2`, but for now, enjoy these dependency upgrades! | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,13 @@ npm-start(1) -- Start a package | |
|
||
## DESCRIPTION | ||
|
||
This runs a package's "start" script, if one was provided. | ||
This runs an arbitrary command specified in the package's `"start"` property of | ||
its `"scripts"` object. If no `"start"` property is specified on the | ||
`"scripts"` object, it will run `node server.js`. | ||
|
||
As of [`[email protected]`](http://blog.npmjs.org/post/98131109725/npm-2-0-0), you can | ||
use custom arguments when executing scripts. Refer to npm-run-script(1) for | ||
more details. | ||
|
||
## SEE ALSO | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -140,7 +140,7 @@ <h2 id="legal-stuff">Legal Stuff</h2> | |
<p>If you have a complaint about a package in the public npm registry, | ||
and cannot <a href="https://docs.npmjs.com/misc/disputes">resolve it with the package | ||
owner</a>, please email | ||
<a href="mailto:support@npmjs.com">support@npmjs.com</a> and explain the situation.</p> | ||
<a href="mailto:support@npmjs.com">support@npmjs.com</a> and explain the situation.</p> | ||
<p>Any data published to The npm Registry (including user account | ||
information) may be removed or modified at the sole discretion of the | ||
npm server administrators.</p> | ||
|
@@ -183,5 +183,5 @@ <h2 id="see-also">SEE ALSO</h2> | |
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr> | ||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr> | ||
</table> | ||
<p id="footer"><a href="../doc/README.html">README</a> — [email protected].9</p> | ||
<p id="footer"><a href="../doc/README.html">README</a> — [email protected].12</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,5 +28,5 @@ <h2 id="synopsis">SYNOPSIS</h2> | |
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr> | ||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr> | ||
</table> | ||
<p id="footer">npm-bin — [email protected].9</p> | ||
<p id="footer">npm-bin — [email protected].12</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,5 +33,5 @@ <h2 id="synopsis">SYNOPSIS</h2> | |
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr> | ||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr> | ||
</table> | ||
<p id="footer">npm-bugs — [email protected].9</p> | ||
<p id="footer">npm-bugs — [email protected].12</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,5 +42,5 @@ <h2 id="synopsis">SYNOPSIS</h2> | |
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr> | ||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr> | ||
</table> | ||
<p id="footer">npm-cache — [email protected].9</p> | ||
<p id="footer">npm-cache — [email protected].12</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,5 +36,5 @@ <h2 id="see-also">SEE ALSO</h2> | |
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr> | ||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr> | ||
</table> | ||
<p id="footer">npm-commands — [email protected].9</p> | ||
<p id="footer">npm-commands — [email protected].12</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,5 +57,5 @@ <h2 id="see-also">SEE ALSO</h2> | |
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr> | ||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr> | ||
</table> | ||
<p id="footer">npm-config — [email protected].9</p> | ||
<p id="footer">npm-config — [email protected].12</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,5 +47,5 @@ <h2 id="see-also">SEE ALSO</h2> | |
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr> | ||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr> | ||
</table> | ||
<p id="footer">npm-deprecate — [email protected].9</p> | ||
<p id="footer">npm-deprecate — [email protected].12</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,5 +33,5 @@ <h2 id="synopsis">SYNOPSIS</h2> | |
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr> | ||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr> | ||
</table> | ||
<p id="footer">npm-docs — [email protected].9</p> | ||
<p id="footer">npm-docs — [email protected].12</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,5 +36,5 @@ <h2 id="synopsis">SYNOPSIS</h2> | |
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr> | ||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr> | ||
</table> | ||
<p id="footer">npm-edit — [email protected].9</p> | ||
<p id="footer">npm-edit — [email protected].12</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,5 +31,5 @@ <h2 id="synopsis">SYNOPSIS</h2> | |
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr> | ||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr> | ||
</table> | ||
<p id="footer">npm-explore — [email protected].9</p> | ||
<p id="footer">npm-explore — [email protected].12</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,5 +44,5 @@ <h2 id="synopsis">SYNOPSIS</h2> | |
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr> | ||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr> | ||
</table> | ||
<p id="footer">npm-help-search — [email protected].9</p> | ||
<p id="footer">npm-help-search — [email protected].12</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,5 +39,5 @@ <h2 id="see-also">SEE ALSO</h2> | |
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr> | ||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr> | ||
</table> | ||
<p id="footer">npm-init — [email protected].9</p> | ||
<p id="footer">npm-init — [email protected].12</p> | ||
|
Oops, something went wrong.