From 2e87e22731017551e5f2582b9c0475faf5cf9aed Mon Sep 17 00:00:00 2001 From: Austin Huang <65315367+austingmhuang@users.noreply.github.com> Date: Mon, 21 Sep 2020 11:16:15 +0900 Subject: [PATCH] Fix for missing babel dependencies in with-rebass example (#16839) Pull request for (Issue: Fix or remove the with-rebass example #16828). Just added some missing dependencies to the package.json of the example Fixes #16839 --- examples/with-rebass/package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/with-rebass/package.json b/examples/with-rebass/package.json index 31607a469c..6e23bae881 100644 --- a/examples/with-rebass/package.json +++ b/examples/with-rebass/package.json @@ -7,6 +7,8 @@ }, "dependencies": { "babel-plugin-styled-components": "^1.1.7", + "babel-plugin-transform-object-assign": "^6.22.0", + "babel-plugin-transform-object-set-prototype-of-to-assign": "^6.22.0", "next": "latest", "react": "^16.7.0", "react-dom": "^16.7.0", -- GitLab