mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Merge branch 'next' into fix/sb-cli-prompt
This commit is contained in:
commit
dad8cc23e7
@ -12,7 +12,7 @@ executors:
|
|||||||
docker:
|
docker:
|
||||||
- image: circleci/node:10
|
- image: circleci/node:10
|
||||||
environment:
|
environment:
|
||||||
NODE_OPTIONS: --max_old_space_size=4096
|
NODE_OPTIONS: --max_old_space_size=3076
|
||||||
resource_class: <<parameters.class>>
|
resource_class: <<parameters.class>>
|
||||||
sb_node_10_browsers:
|
sb_node_10_browsers:
|
||||||
parameters:
|
parameters:
|
||||||
@ -25,7 +25,7 @@ executors:
|
|||||||
docker:
|
docker:
|
||||||
- image: circleci/node:10-browsers
|
- image: circleci/node:10-browsers
|
||||||
environment:
|
environment:
|
||||||
NODE_OPTIONS: --max_old_space_size=4096
|
NODE_OPTIONS: --max_old_space_size=3076
|
||||||
resource_class: <<parameters.class>>
|
resource_class: <<parameters.class>>
|
||||||
sb_node_12_browsers:
|
sb_node_12_browsers:
|
||||||
parameters:
|
parameters:
|
||||||
@ -38,7 +38,7 @@ executors:
|
|||||||
docker:
|
docker:
|
||||||
- image: circleci/node:12-browsers
|
- image: circleci/node:12-browsers
|
||||||
environment:
|
environment:
|
||||||
NODE_OPTIONS: --max_old_space_size=4096
|
NODE_OPTIONS: --max_old_space_size=3076
|
||||||
resource_class: <<parameters.class>>
|
resource_class: <<parameters.class>>
|
||||||
|
|
||||||
orbs:
|
orbs:
|
||||||
@ -76,7 +76,7 @@ commands:
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
executor:
|
executor:
|
||||||
class: medium
|
class: large
|
||||||
name: sb_node_10_classic
|
name: sb_node_10_classic
|
||||||
steps:
|
steps:
|
||||||
- git-shallow-clone/checkout_advanced:
|
- git-shallow-clone/checkout_advanced:
|
||||||
|
@ -54,6 +54,7 @@
|
|||||||
"ts-dedent": "^2.0.0"
|
"ts-dedent": "^2.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@types/rax": "^1.0.2",
|
||||||
"rax": "^1.1.0"
|
"rax": "^1.1.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
@ -15,7 +15,8 @@ export const {
|
|||||||
} = clientApi;
|
} = clientApi;
|
||||||
|
|
||||||
const framework = 'rax';
|
const framework = 'rax';
|
||||||
export const storiesOf = (...args) => clientApi.storiesOf(...args).addParameters({ framework });
|
export const storiesOf = (...args: any) =>
|
||||||
export const configure = (...args) => coreConfigure(framework, ...args);
|
clientApi.storiesOf(...args).addParameters({ framework });
|
||||||
|
export const configure = (...args: any) => coreConfigure(framework, ...args);
|
||||||
|
|
||||||
export { forceReRender };
|
export { forceReRender };
|
@ -12,7 +12,12 @@ export default function renderMain({
|
|||||||
name,
|
name,
|
||||||
showMain,
|
showMain,
|
||||||
showError,
|
showError,
|
||||||
// forceRender,
|
}: {
|
||||||
|
storyFn: Function;
|
||||||
|
kind: string;
|
||||||
|
name: string;
|
||||||
|
showMain: () => any;
|
||||||
|
showError: (input: { title: string; description: string }) => void;
|
||||||
}) {
|
}) {
|
||||||
const Element = storyFn;
|
const Element = storyFn;
|
||||||
|
|
||||||
@ -29,6 +34,11 @@ export default function renderMain({
|
|||||||
|
|
||||||
showMain();
|
showMain();
|
||||||
|
|
||||||
|
// There is something miscellaneous here, for now, more precisely on L23,
|
||||||
|
// as we are using the storyFn directly and not calling it, so `Element` is a
|
||||||
|
// function but according to `createElement` types, there is no signature
|
||||||
|
// taking a function as input.
|
||||||
|
// @ts-expect-error
|
||||||
render(createElement(Element), rootElement, {
|
render(createElement(Element), rootElement, {
|
||||||
driver: DriverDOM,
|
driver: DriverDOM,
|
||||||
});
|
});
|
@ -1,4 +1,6 @@
|
|||||||
export function babelDefault(config) {
|
import { TransformOptions } from '@babel/core';
|
||||||
|
|
||||||
|
export function babelDefault(config: TransformOptions) {
|
||||||
return {
|
return {
|
||||||
...config,
|
...config,
|
||||||
presets: [
|
presets: [
|
2
app/rax/src/typings.d.ts
vendored
Normal file
2
app/rax/src/typings.d.ts
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
declare module '@storybook/core/*';
|
||||||
|
declare module 'global';
|
7
app/rax/tsconfig.json
Normal file
7
app/rax/tsconfig.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"extends": "../../tsconfig.json",
|
||||||
|
"compilerOptions": {
|
||||||
|
"rootDir": "src",
|
||||||
|
"types": ["webpack-env", "node"]
|
||||||
|
}
|
||||||
|
}
|
@ -5123,6 +5123,14 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.3.tgz#7ee330ba7caafb98090bece86a5ee44115904c2c"
|
resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.3.tgz#7ee330ba7caafb98090bece86a5ee44115904c2c"
|
||||||
integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==
|
integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==
|
||||||
|
|
||||||
|
"@types/rax@^1.0.2":
|
||||||
|
version "1.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/rax/-/rax-1.0.2.tgz#1a6121244a0ad31deecdcede2651efa4ec9ead2a"
|
||||||
|
integrity sha512-oB3tpuFhFc4osp2brErugGbInNQs15GSmE21PXh7LVMPwUaemBTMjzGxXrzgvoW/marD9sRxPJTkf53UJpjnnA==
|
||||||
|
dependencies:
|
||||||
|
"@types/prop-types" "*"
|
||||||
|
csstype "^3.0.2"
|
||||||
|
|
||||||
"@types/reach__router@^1.3.5":
|
"@types/reach__router@^1.3.5":
|
||||||
version "1.3.6"
|
version "1.3.6"
|
||||||
resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.3.6.tgz#413417ce74caab331c70ce6a03a4c825188e4709"
|
resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.3.6.tgz#413417ce74caab331c70ce6a03a4c825188e4709"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user