fix(toolbars): add missing dependencies

- `core-js` is required because generated code imports a lot of things from it
- `react-dom` is needed because this package is a peerDeps of `@storybook/addons` and `@storybook/client-api`
This commit is contained in:
Gaëtan Maisse 2020-04-30 17:32:01 +02:00
parent da482489ee
commit 1c3621a3dd
No known key found for this signature in database
GPG Key ID: D934C0EF3714A8A8

View File

@ -33,10 +33,12 @@
"@storybook/addons": "6.0.0-beta.0",
"@storybook/api": "6.0.0-beta.0",
"@storybook/client-api": "6.0.0-beta.0",
"@storybook/components": "6.0.0-beta.0"
"@storybook/components": "6.0.0-beta.0",
"core-js": "^3.0.1"
},
"peerDependencies": {
"react": "*"
"react": "*",
"react-dom": "*"
},
"publishConfig": {
"access": "public"