mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
change addon-actions to new structure
This commit is contained in:
parent
2288a26302
commit
fd79ffb447
1
addons/actions/manager.js
Normal file
1
addons/actions/manager.js
Normal file
@ -0,0 +1 @@
|
||||
module.exports = require('./dist/esm/manager');
|
@ -43,6 +43,7 @@
|
||||
"dependencies": {
|
||||
"@storybook/addons": "6.5.0-alpha.49",
|
||||
"@storybook/api": "6.5.0-alpha.49",
|
||||
"@storybook/client-logger": "6.5.0-alpha.49",
|
||||
"@storybook/components": "6.5.0-alpha.49",
|
||||
"@storybook/core-events": "6.5.0-alpha.49",
|
||||
"@storybook/csf": "0.0.2--canary.87bc651.0",
|
||||
|
@ -1,16 +0,0 @@
|
||||
function managerEntries(entry, options) {
|
||||
return [...entry, require.resolve('./dist/esm/manager')];
|
||||
}
|
||||
|
||||
function config(entry = [], { addDecorator = true } = {}) {
|
||||
const actionConfig = [];
|
||||
if (addDecorator) {
|
||||
actionConfig.push(require.resolve('./dist/esm/preset/addDecorator'));
|
||||
}
|
||||
return [...entry, ...actionConfig, require.resolve('./dist/esm/preset/addArgs')];
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
managerEntries,
|
||||
config,
|
||||
};
|
1
addons/actions/preview.js
Normal file
1
addons/actions/preview.js
Normal file
@ -0,0 +1 @@
|
||||
module.exports = require('./dist/esm/preset/preview');
|
@ -1 +1,5 @@
|
||||
require('./dist/esm/manager');
|
||||
require('@storybook/client-logger').once.warn(
|
||||
'register.js is deprecated see https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#deprecated-registerjs'
|
||||
);
|
||||
|
||||
require('./manager');
|
||||
|
2
addons/actions/src/preset/preview.tsx
Normal file
2
addons/actions/src/preset/preview.tsx
Normal file
@ -0,0 +1,2 @@
|
||||
export * from './addDecorator';
|
||||
export * from './addArgs';
|
Loading…
x
Reference in New Issue
Block a user