From f36664f7fe17a9282361af775b901e64ca360c5c Mon Sep 17 00:00:00 2001 From: Hawken Rives Date: Thu, 30 Mar 2017 16:12:01 -0700 Subject: [PATCH] Upgrade glob to v7.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: > Explain the **motivation** for making this change. What existing problem does the pull request solve? Of the three dependencies I have that rely on `glob`, react-native is the only one not on 7.x. If react-native can upgrade, then npm can deduplicate the glob dependency. ```console $ npm ls glob ├─┬ eslint@3.13.1 │ └── glob@7.1.1 ├─┬ jest@18.1.0 │ └─┬ jest-cli@18.1.0 │ └─┬ istanbul-api@1.1.0 │ ├─┬ fileset@2.0.3 │ │ └── glob@7.1.1 │ ├─┬ istanbul-lib-report@1.0.0-alpha.3 │ │ └─┬ rimraf@2.5.4 │ │ └── glob@7.1.1 │ └─┬ istanbul-lib-source-maps@1.1.0 │ └─┬ rimraf@2.5.4 │ └── glob@7.1.1 └─┬ react-native@0.39.2 ├── glob@5.0.15 └─┬ rimraf@2.5.4 └── glob@7.1.1 ``` **Test plan (required)** > Demonstrate the code is solid. Example: The exact commands you ran and their output, screenshots / videos if the pull req Closes https://github.com/facebook/react-native/pull/11893 Differential Revision: D4796721 Pulled By: javache fbshipit-source-id: 6e7424dd731329f982c2f6c05b40dec8febf2e57 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 43b74612e..06452ff6f 100644 --- a/package.json +++ b/package.json @@ -164,7 +164,7 @@ "fbjs-scripts": "^0.7.0", "form-data": "^2.1.1", "fs-extra": "^1.0.0", - "glob": "^5.0.15", + "glob": "^7.1.1", "graceful-fs": "^4.1.3", "image-size": "^0.3.5", "immutable": "~3.7.6",