From a3acb7b86bd374514469892abcb2ce8d75b62ae8 Mon Sep 17 00:00:00 2001 From: Joe Lencioni Date: Thu, 22 Jun 2017 08:11:35 -0700 Subject: [PATCH] Require uuid at least 3.0.1 In #998 I bumped uuid 2.x -> 3.x and converted the import to import from `uuid/v4`, but this didn't exist until 3.0.1. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1b45e4694..8233055ef 100644 --- a/package.json +++ b/package.json @@ -66,7 +66,7 @@ "object.entries": "^1.0.4", "object.values": "^1.0.4", "prop-types": "^15.5.10", - "uuid": "^3.0.0" + "uuid": "^3.0.1" }, "devDependencies": { "babel-cli": "^6.24.1",