mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:41:06 +08:00
Merge pull request #17425 from storybookjs/tech/builder-optimization
Core: Remove unused babel dependencies
This commit is contained in:
commit
613fc4c2cb
@ -86,7 +86,7 @@ jobs:
|
||||
- restore_cache:
|
||||
name: Restore Yarn cache
|
||||
keys:
|
||||
- build-yarn-2-cache-v2--{{ checksum "yarn.lock" }}
|
||||
- build-yarn-2-cache-v3--{{ checksum "yarn.lock" }}
|
||||
- run:
|
||||
name: Install dependencies
|
||||
command: yarn install --immutable
|
||||
@ -95,7 +95,7 @@ jobs:
|
||||
command: yarn bootstrap --core
|
||||
- save_cache:
|
||||
name: Save Yarn cache
|
||||
key: build-yarn-2-cache-v2--{{ checksum "yarn.lock" }}
|
||||
key: build-yarn-2-cache-v3--{{ checksum "yarn.lock" }}
|
||||
paths:
|
||||
- ~/.yarn/berry/cache
|
||||
- persist_to_workspace:
|
||||
@ -136,7 +136,7 @@ jobs:
|
||||
executor:
|
||||
class: medium
|
||||
name: sb_node_14_browsers
|
||||
parallelism: 4
|
||||
parallelism: 17
|
||||
steps:
|
||||
- git-shallow-clone/checkout_advanced:
|
||||
clone_options: '--depth 1 --verbose'
|
||||
|
@ -207,7 +207,7 @@ Sets the button to a disabled state.",
|
||||
},
|
||||
"type": Object {
|
||||
"required": true,
|
||||
"summary": "[]",
|
||||
"summary": "T[]",
|
||||
},
|
||||
},
|
||||
"type": Object {
|
||||
|
@ -227,7 +227,7 @@ Sets the button to a disabled state.",
|
||||
"deprecationMessage": "",
|
||||
"line": 195,
|
||||
"name": "item",
|
||||
"type": "[]",
|
||||
"type": "T[]",
|
||||
},
|
||||
Object {
|
||||
"decorators": Array [],
|
||||
|
@ -218,7 +218,7 @@ class ManagerProvider extends Component<ManagerProviderProps, State> {
|
||||
this.api = api;
|
||||
}
|
||||
|
||||
static getDerivedStateFromProps = (props: ManagerProviderProps, state: State) => {
|
||||
static getDerivedStateFromProps(props: ManagerProviderProps, state: State) {
|
||||
if (state.path !== props.path) {
|
||||
return {
|
||||
...state,
|
||||
@ -231,7 +231,7 @@ class ManagerProvider extends Component<ManagerProviderProps, State> {
|
||||
};
|
||||
}
|
||||
return null;
|
||||
};
|
||||
}
|
||||
|
||||
shouldComponentUpdate(nextProps: ManagerProviderProps, nextState: State) {
|
||||
const prevState = this.state;
|
||||
|
@ -40,26 +40,6 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
"@babel/plugin-proposal-class-properties": "^7.12.1",
|
||||
"@babel/plugin-proposal-decorators": "^7.12.12",
|
||||
"@babel/plugin-proposal-export-default-from": "^7.12.1",
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
|
||||
"@babel/plugin-proposal-private-methods": "^7.12.1",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
||||
"@babel/plugin-transform-arrow-functions": "^7.12.1",
|
||||
"@babel/plugin-transform-block-scoping": "^7.12.12",
|
||||
"@babel/plugin-transform-classes": "^7.12.1",
|
||||
"@babel/plugin-transform-destructuring": "^7.12.1",
|
||||
"@babel/plugin-transform-for-of": "^7.12.1",
|
||||
"@babel/plugin-transform-parameters": "^7.12.1",
|
||||
"@babel/plugin-transform-shorthand-properties": "^7.12.1",
|
||||
"@babel/plugin-transform-spread": "^7.12.1",
|
||||
"@babel/plugin-transform-template-literals": "^7.12.1",
|
||||
"@babel/preset-env": "^7.12.11",
|
||||
"@babel/preset-react": "^7.12.10",
|
||||
"@babel/preset-typescript": "^7.12.7",
|
||||
"@storybook/addons": "6.5.0-alpha.44",
|
||||
"@storybook/api": "6.5.0-alpha.44",
|
||||
"@storybook/channel-postmessage": "6.5.0-alpha.44",
|
||||
@ -80,8 +60,6 @@
|
||||
"@types/webpack": "^4.41.26",
|
||||
"autoprefixer": "^9.8.6",
|
||||
"babel-loader": "^8.0.0",
|
||||
"babel-plugin-macros": "^2.8.0",
|
||||
"babel-plugin-polyfill-corejs3": "^0.1.0",
|
||||
"case-sensitive-paths-webpack-plugin": "^2.3.0",
|
||||
"core-js": "^3.8.2",
|
||||
"css-loader": "^3.6.0",
|
||||
@ -113,7 +91,7 @@
|
||||
"@types/case-sensitive-paths-webpack-plugin": "^2.1.4",
|
||||
"@types/terser-webpack-plugin": "^4.2.0",
|
||||
"@types/webpack-dev-middleware": "^3.7.3",
|
||||
"@types/webpack-hot-middleware": "^2.25.3",
|
||||
"@types/webpack-hot-middleware": "<=2.25.5",
|
||||
"@types/webpack-virtual-modules": "^0.1.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -40,25 +40,6 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
"@babel/plugin-proposal-class-properties": "^7.12.1",
|
||||
"@babel/plugin-proposal-decorators": "^7.12.12",
|
||||
"@babel/plugin-proposal-export-default-from": "^7.12.1",
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
|
||||
"@babel/plugin-proposal-private-methods": "^7.12.1",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
||||
"@babel/plugin-transform-arrow-functions": "^7.12.1",
|
||||
"@babel/plugin-transform-block-scoping": "^7.12.12",
|
||||
"@babel/plugin-transform-classes": "^7.12.1",
|
||||
"@babel/plugin-transform-destructuring": "^7.12.1",
|
||||
"@babel/plugin-transform-for-of": "^7.12.1",
|
||||
"@babel/plugin-transform-parameters": "^7.12.1",
|
||||
"@babel/plugin-transform-shorthand-properties": "^7.12.1",
|
||||
"@babel/plugin-transform-spread": "^7.12.1",
|
||||
"@babel/preset-env": "^7.12.11",
|
||||
"@babel/preset-react": "^7.12.10",
|
||||
"@babel/preset-typescript": "^7.12.7",
|
||||
"@storybook/addons": "6.5.0-alpha.44",
|
||||
"@storybook/api": "6.5.0-alpha.44",
|
||||
"@storybook/channel-postmessage": "6.5.0-alpha.44",
|
||||
@ -101,7 +82,7 @@
|
||||
"@types/case-sensitive-paths-webpack-plugin": "^2.1.4",
|
||||
"@types/terser-webpack-plugin": "^5.0.2",
|
||||
"@types/webpack-dev-middleware": "^4.1.0",
|
||||
"@types/webpack-hot-middleware": "^2.25.3",
|
||||
"@types/webpack-hot-middleware": "^2.25.6",
|
||||
"@types/webpack-virtual-modules": "^0.1.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -1,5 +1,3 @@
|
||||
/* eslint-disable react/no-did-update-set-state */
|
||||
|
||||
import React, { Component, Fragment, FunctionComponent, CSSProperties, ReactNode } from 'react';
|
||||
import { styled, withTheme, Theme } from '@storybook/theming';
|
||||
import { State } from '@storybook/api';
|
||||
|
38
package.json
38
package.json
@ -102,23 +102,23 @@
|
||||
"serialize-javascript": "^3.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.12.10",
|
||||
"@babel/core": "^7.12.10",
|
||||
"@babel/plugin-proposal-class-properties": "^7.12.1",
|
||||
"@babel/plugin-proposal-decorators": "^7.12.12",
|
||||
"@babel/plugin-proposal-export-default-from": "^7.12.1",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
|
||||
"@babel/plugin-proposal-private-methods": "^7.12.1",
|
||||
"@babel/cli": "^7.17.6",
|
||||
"@babel/core": "^7.17.5",
|
||||
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
||||
"@babel/plugin-proposal-decorators": "^7.17.2",
|
||||
"@babel/plugin-proposal-export-default-from": "^7.16.7",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
|
||||
"@babel/plugin-proposal-private-methods": "^7.16.11",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
||||
"@babel/plugin-transform-arrow-functions": "^7.13.0",
|
||||
"@babel/plugin-transform-block-scoping": "^7.13.16",
|
||||
"@babel/plugin-transform-destructuring": "^7.13.17",
|
||||
"@babel/plugin-transform-shorthand-properties": "^7.12.13",
|
||||
"@babel/preset-env": "^7.12.11",
|
||||
"@babel/preset-flow": "^7.12.1",
|
||||
"@babel/preset-react": "^7.12.10",
|
||||
"@babel/preset-typescript": "^7.12.7",
|
||||
"@babel/runtime": "^7.12.5",
|
||||
"@babel/plugin-transform-arrow-functions": "^7.16.7",
|
||||
"@babel/plugin-transform-block-scoping": "^7.16.7",
|
||||
"@babel/plugin-transform-destructuring": "^7.17.3",
|
||||
"@babel/plugin-transform-shorthand-properties": "^7.16.7",
|
||||
"@babel/preset-env": "^7.16.11",
|
||||
"@babel/preset-flow": "^7.16.7",
|
||||
"@babel/preset-react": "^7.16.7",
|
||||
"@babel/preset-typescript": "^7.16.7",
|
||||
"@babel/runtime": "^7.17.2",
|
||||
"@compodoc/compodoc": "^1.1.18",
|
||||
"@emotion/snapshot-serializer": "^0.8.2",
|
||||
"@linear/sdk": "^1.21.0",
|
||||
@ -127,7 +127,7 @@
|
||||
"@nrwl/nx-cloud": "12.1.1",
|
||||
"@nrwl/tao": "12.3.4",
|
||||
"@nrwl/workspace": "12.3.4",
|
||||
"@rollup/plugin-babel": "^5.3.0",
|
||||
"@rollup/plugin-babel": "^5.3.1",
|
||||
"@rollup/plugin-commonjs": "^21.0.1",
|
||||
"@rollup/plugin-json": "^4.1.0",
|
||||
"@rollup/plugin-node-resolve": "^13.0.6",
|
||||
@ -189,7 +189,7 @@
|
||||
"@testing-library/jest-dom": "^5.11.9",
|
||||
"@testing-library/react": "^11.2.2",
|
||||
"@testing-library/user-event": "^13.2.1",
|
||||
"@types/detect-port": "^1.3.0",
|
||||
"@types/detect-port": "^1.3.2",
|
||||
"@types/doctrine": "^0.0.3",
|
||||
"@types/enzyme": "^3.10.8",
|
||||
"@types/escodegen": "^0.0.6",
|
||||
@ -222,7 +222,7 @@
|
||||
"codecov": "^3.8.1",
|
||||
"commander": "^6.2.1",
|
||||
"concurrently": "^5.3.0",
|
||||
"core-js": "^3.8.2",
|
||||
"core-js": "^3.21.1",
|
||||
"cross-env": "^7.0.3",
|
||||
"danger": "^10.6.2",
|
||||
"detect-port": "^1.3.0",
|
||||
|
Loading…
x
Reference in New Issue
Block a user