From 7f1300a989d4188b018fd6069362ad9c0208b4be Mon Sep 17 00:00:00 2001 From: Mark Learst Date: Wed, 21 Mar 2018 11:45:46 -0400 Subject: [PATCH] Patching for IE11 Mirroring the patch for react-dev-utils that causes dev utils to break in IE11. strip-ansi package arrow function is causing this issue. See react-dev-utils patch PR that was accepted to fix this issue: https://github.com/facebook/create-react-app/pull/2692 --- packages/razzle-dev-utils/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/razzle-dev-utils/package.json b/packages/razzle-dev-utils/package.json index 091494632..00e0f6a17 100644 --- a/packages/razzle-dev-utils/package.json +++ b/packages/razzle-dev-utils/package.json @@ -16,6 +16,6 @@ "chalk": "1.1.3", "react-dev-utils": "4.1.0", "sockjs-client": "1.1.4", - "strip-ansi": "4.0.0" + "strip-ansi": "3.0.1" } }