npm: Upgrade to v2.1.6

This commit is contained in:
Timothy J Fontaine 2014-11-04 15:08:12 -08:00
parent 272aa589af
commit 28ae70ebad
715 changed files with 18510 additions and 6592 deletions

View file

@ -93,6 +93,12 @@ Packer.prototype.applyIgnores = function (entry, partial, entryObj) {
// readme files should never be ignored.
if (entry.match(/^readme(\.[^\.]*)$/i)) return true
// license files should never be ignored.
if (entry.match(/^(license|licence)(\.[^\.]*)?$/i)) return true
// changelogs should never be ignored.
if (entry.match(/^(changes|changelog|history)(\.[^\.]*)?$/i)) return true
// special rules. see below.
if (entry === "node_modules" && this.packageRoot) return true