From 9c71efb3fe1d292d28ad22bbcaa4bdbbb1a02a72 Mon Sep 17 00:00:00 2001 From: Tom Coleman Date: Fri, 8 Mar 2019 11:40:29 +1100 Subject: [PATCH] Add core JS dependencies across the stack where it was missing For #5831 --- addons/notes/package.json | 1 + app/react-native/package.json | 1 + lib/addons/package.json | 1 + lib/channel-postmessage/package.json | 1 + lib/channel-websocket/package.json | 1 + lib/channels/package.json | 3 +++ lib/client-logger/package.json | 3 +++ lib/components/package.json | 1 + lib/core-events/package.json | 3 +++ lib/router/package.json | 1 + lib/theming/package.json | 1 + lib/ui/package.json | 1 + 12 files changed, 18 insertions(+) diff --git a/addons/notes/package.json b/addons/notes/package.json index 550d71b4a34..e51cb5ba6be 100644 --- a/addons/notes/package.json +++ b/addons/notes/package.json @@ -28,6 +28,7 @@ "@storybook/components": "5.1.0-alpha.0", "@storybook/core-events": "5.1.0-alpha.0", "@storybook/theming": "5.1.0-alpha.0", + "core-js": "^2.6.5", "markdown-to-jsx": "^6.9.1", "prop-types": "^15.7.2", "util-deprecate": "^1.0.2" diff --git a/app/react-native/package.json b/app/react-native/package.json index 15ef8356558..3b4ec0e4cd8 100644 --- a/app/react-native/package.json +++ b/app/react-native/package.json @@ -47,6 +47,7 @@ "babel-runtime": "^6.26.0", "case-sensitive-paths-webpack-plugin": "^2.2.0", "commander": "^2.19.0", + "core-js": "^2.6.5", "dotenv-webpack": "^1.7.0", "ejs": "^2.6.1", "express": "^4.16.4", diff --git a/lib/addons/package.json b/lib/addons/package.json index c2cc691aacd..ab4b017ef5a 100644 --- a/lib/addons/package.json +++ b/lib/addons/package.json @@ -23,6 +23,7 @@ "dependencies": { "@storybook/channels": "5.1.0-alpha.0", "@storybook/client-logger": "5.1.0-alpha.0", + "core-js": "^2.6.5", "global": "^4.3.2", "util-deprecate": "^1.0.2" }, diff --git a/lib/channel-postmessage/package.json b/lib/channel-postmessage/package.json index 135d15f639d..1d6a1754c97 100644 --- a/lib/channel-postmessage/package.json +++ b/lib/channel-postmessage/package.json @@ -23,6 +23,7 @@ "dependencies": { "@storybook/channels": "5.1.0-alpha.0", "@storybook/client-logger": "5.1.0-alpha.0", + "core-js": "^2.6.5", "global": "^4.3.2", "telejson": "^2.1.1" }, diff --git a/lib/channel-websocket/package.json b/lib/channel-websocket/package.json index 4de1362e0c5..054faecd3c0 100644 --- a/lib/channel-websocket/package.json +++ b/lib/channel-websocket/package.json @@ -22,6 +22,7 @@ }, "dependencies": { "@storybook/channels": "5.1.0-alpha.0", + "core-js": "^2.6.5", "global": "^4.3.2", "json-fn": "^1.1.1" }, diff --git a/lib/channels/package.json b/lib/channels/package.json index e81b43d5193..50e1f4a56f7 100644 --- a/lib/channels/package.json +++ b/lib/channels/package.json @@ -22,5 +22,8 @@ }, "publishConfig": { "access": "public" + }, + "dependencies": { + "core-js": "^2.6.5" } } diff --git a/lib/client-logger/package.json b/lib/client-logger/package.json index e463440b258..9d15dc611dd 100644 --- a/lib/client-logger/package.json +++ b/lib/client-logger/package.json @@ -22,5 +22,8 @@ }, "publishConfig": { "access": "public" + }, + "dependencies": { + "core-js": "^2.6.5" } } diff --git a/lib/components/package.json b/lib/components/package.json index 37e8fef0b4c..3ae0ede6ca1 100644 --- a/lib/components/package.json +++ b/lib/components/package.json @@ -26,6 +26,7 @@ "@storybook/core-events": "5.1.0-alpha.0", "@storybook/router": "5.1.0-alpha.0", "@storybook/theming": "5.1.0-alpha.0", + "core-js": "^2.6.5", "global": "^4.3.2", "js-beautify": "^1.8.9", "memoizerific": "^1.11.3", diff --git a/lib/core-events/package.json b/lib/core-events/package.json index 61535d2b9ec..b4e579dff20 100644 --- a/lib/core-events/package.json +++ b/lib/core-events/package.json @@ -22,5 +22,8 @@ }, "publishConfig": { "access": "public" + }, + "dependencies": { + "core-js": "^2.6.5" } } diff --git a/lib/router/package.json b/lib/router/package.json index 9c0854f5b88..ae677fd65fa 100644 --- a/lib/router/package.json +++ b/lib/router/package.json @@ -22,6 +22,7 @@ "dependencies": { "@reach/router": "^1.2.1", "@storybook/theming": "5.1.0-alpha.0", + "core-js": "^2.6.5", "global": "^4.3.2", "memoizerific": "^1.11.3", "qs": "^6.6.0" diff --git a/lib/theming/package.json b/lib/theming/package.json index 20bf1286d46..be58bcfcb29 100644 --- a/lib/theming/package.json +++ b/lib/theming/package.json @@ -24,6 +24,7 @@ "@emotion/core": "^10.0.7", "@emotion/styled": "^10.0.7", "@storybook/client-logger": "5.1.0-alpha.0", + "core-js": "^2.6.5", "common-tags": "^1.8.0", "deep-object-diff": "^1.1.0", "emotion-theming": "^10.0.7", diff --git a/lib/ui/package.json b/lib/ui/package.json index 009758e2f8c..2da6449176f 100644 --- a/lib/ui/package.json +++ b/lib/ui/package.json @@ -28,6 +28,7 @@ "@storybook/core-events": "5.1.0-alpha.0", "@storybook/router": "5.1.0-alpha.0", "@storybook/theming": "5.1.0-alpha.0", + "core-js": "^2.6.5", "fast-deep-equal": "^2.0.1", "fuzzy-search": "^3.0.1", "global": "^4.3.2",