Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKat Marchán <kzm@sykosomatic.org>2017-05-02 08:46:07 +0300
committerRebecca Turner <me@re-becca.org>2017-05-26 02:13:47 +0300
commitea1f220259f0cf4b8249e60015667004cba66097 (patch)
tree25a1e573afcfec31d934c2d24cb01d6f8a1d7640 /node_modules
parentba50bdb0f0bbbae234eb4d8d87c261c29b506f8b (diff)
FLOATING PATCH: directly patch fstream-npm
remove this patch once https://github.com/npm/fstream-npm/pull/27 lands
Diffstat (limited to 'node_modules')
-rw-r--r--node_modules/fstream-npm/fstream-npm.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/node_modules/fstream-npm/fstream-npm.js b/node_modules/fstream-npm/fstream-npm.js
index 621466642..9decc8b67 100644
--- a/node_modules/fstream-npm/fstream-npm.js
+++ b/node_modules/fstream-npm/fstream-npm.js
@@ -151,7 +151,8 @@ Packer.prototype.applyIgnores = function (entry, partial, entryObj) {
entry.match(/^\..*\.swp$/) ||
entry === '.DS_Store' ||
entry.match(/^\._/) ||
- entry.match(/^.*\.orig$/)
+ entry.match(/^.*\.orig$/) ||
+ entry === 'package-lock.json'
) {
return false
}