From bdde4122034c89223f0e5cdb036e0a622a18947d Mon Sep 17 00:00:00 2001 From: Adam Wanninger Date: Thu, 15 Nov 2018 07:03:23 -0500 Subject: [PATCH 1/2] extra polyfills must be included manually, fixes #5795 --- packages/react-app-polyfill/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/react-app-polyfill/README.md b/packages/react-app-polyfill/README.md index 3243ad7b16e..3e6e352076f 100644 --- a/packages/react-app-polyfill/README.md +++ b/packages/react-app-polyfill/README.md @@ -13,6 +13,8 @@ Each polyfill ensures the following language features are present: 1. `Symbol` (a built-in object used by `for...of` syntax and friends) 1. `Array.from` (a built-in static method used by array spread, i.e. `[...arr]`) +*If you need more features, you must include them manually. + ### Usage First, install the package using Yarn or npm: From 8fee756aba1151fdf2b614ecb8bb72d19743e14b Mon Sep 17 00:00:00 2001 From: Adam Wanninger Date: Fri, 16 Nov 2018 06:45:57 -0500 Subject: [PATCH 2/2] make note italicized --- packages/react-app-polyfill/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-app-polyfill/README.md b/packages/react-app-polyfill/README.md index 3e6e352076f..52c299f24fe 100644 --- a/packages/react-app-polyfill/README.md +++ b/packages/react-app-polyfill/README.md @@ -13,7 +13,7 @@ Each polyfill ensures the following language features are present: 1. `Symbol` (a built-in object used by `for...of` syntax and friends) 1. `Array.from` (a built-in static method used by array spread, i.e. `[...arr]`) -*If you need more features, you must include them manually. +*If you need more features, you must include them manually.* ### Usage