mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
We always have addArgs and addArgTypes now
Previously, we didn't have any guarantee which version of storybook the builder was being used with. Now that it's in the monorepo, it'll be versioned together with the rest of storybook.
This commit is contained in:
parent
e10b7900d4
commit
7da06e40f5
@ -39,6 +39,8 @@ export async function generateIframeScriptCode(options: ExtendedOptions) {
|
||||
addDecorator,
|
||||
addParameters,
|
||||
addLoader,
|
||||
addArgs,
|
||||
addArgTypes,
|
||||
addArgTypesEnhancer,
|
||||
addArgsEnhancer,
|
||||
setGlobalRender,
|
||||
@ -53,22 +55,10 @@ export async function generateIframeScriptCode(options: ExtendedOptions) {
|
||||
const value = config[key];
|
||||
switch (key) {
|
||||
case 'args': {
|
||||
if (typeof clientApi.addArgs !== "undefined") {
|
||||
return clientApi.addArgs(value);
|
||||
} else {
|
||||
return logger.warn(
|
||||
"Could not add global args. Please open an issue in storybookjs/builder-vite."
|
||||
);
|
||||
}
|
||||
return addArgs(value);
|
||||
}
|
||||
case 'argTypes': {
|
||||
if (typeof clientApi.addArgTypes !== "undefined") {
|
||||
return clientApi.addArgTypes(value);
|
||||
} else {
|
||||
return logger.warn(
|
||||
"Could not add global argTypes. Please open an issue in storybookjs/builder-vite."
|
||||
);
|
||||
}
|
||||
return addArgTypes(value);
|
||||
}
|
||||
case 'decorators': {
|
||||
return value.forEach((decorator) => addDecorator(decorator, false));
|
||||
|
Loading…
x
Reference in New Issue
Block a user