mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
17 lines
430 B
JavaScript
17 lines
430 B
JavaScript
function managerEntries(entry, options) {
|
|
return [...entry, require.resolve('./dist/esm/register')];
|
|
}
|
|
|
|
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,
|
|
};
|