mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:41:06 +08:00
fix: remove the play function from compose configs
this disallows setting a global play function in project annotations
This commit is contained in:
parent
1e739163f0
commit
537b6769a8
@ -124,13 +124,11 @@ describe('composeConfigs', () => {
|
||||
expect(
|
||||
composeConfigs([
|
||||
{
|
||||
play: 'play-1',
|
||||
render: 'render-1',
|
||||
renderToDOM: 'renderToDOM-1',
|
||||
applyDecorators: 'applyDecorators-1',
|
||||
},
|
||||
{
|
||||
play: 'play-2',
|
||||
render: 'render-2',
|
||||
renderToDOM: 'renderToDOM-2',
|
||||
applyDecorators: 'applyDecorators-2',
|
||||
@ -146,7 +144,6 @@ describe('composeConfigs', () => {
|
||||
globals: {},
|
||||
globalTypes: {},
|
||||
loaders: [],
|
||||
play: 'play-1',
|
||||
render: 'render-1',
|
||||
renderToDOM: 'renderToDOM-1',
|
||||
applyDecorators: 'applyDecorators-1',
|
||||
|
@ -37,7 +37,6 @@ export function composeConfigs<TFramework extends AnyFramework>(
|
||||
globalTypes: getObjectField(moduleExportList, 'globalTypes'),
|
||||
loaders: getArrayField(moduleExportList, 'loaders'),
|
||||
render: getSingletonField(moduleExportList, 'render'),
|
||||
play: getSingletonField(moduleExportList, 'play'),
|
||||
renderToDOM: getSingletonField(moduleExportList, 'renderToDOM'),
|
||||
applyDecorators: getSingletonField(moduleExportList, 'applyDecorators'),
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user