From feb17bc9476996ae9583a8def8984a42365c999c Mon Sep 17 00:00:00 2001 From: Eddie Monge Date: Wed, 20 Mar 2019 17:39:36 -0700 Subject: [PATCH] fix(client-api): add core-js as a dep client-api requires core-js in the dist files but it is not listed as a dependency. This causes it to use whatever package npm/yarn/whatev thinks it should use, in my case, ver3 since that's the top most version. --- lib/client-api/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/client-api/package.json b/lib/client-api/package.json index bfdbcb708421..c833f82655b7 100644 --- a/lib/client-api/package.json +++ b/lib/client-api/package.json @@ -25,6 +25,7 @@ "@storybook/core-events": "5.1.0-alpha.11", "@storybook/router": "5.1.0-alpha.11", "common-tags": "^1.8.0", + "core-js": "^2.6.5", "eventemitter3": "^3.1.0", "global": "^4.3.2", "is-plain-object": "^2.0.4",