From 3b05d0aa8b4b682d91bd43c3b999c4c346638d79 Mon Sep 17 00:00:00 2001 From: Mark Learst Date: Fri, 23 Mar 2018 11:32:14 -0400 Subject: [PATCH] Patching for IE11 (#547) 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" } }