mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 04:01:08 +08:00
14 lines
381 B
JavaScript
14 lines
381 B
JavaScript
function managerEntries(entry = [], options) {
|
|
return [...entry, require.resolve('./dist/esm/register')];
|
|
}
|
|
|
|
function config(entry = [], { addDecorator = true } = {}) {
|
|
const knobsConfig = [];
|
|
if (addDecorator) {
|
|
knobsConfig.push(require.resolve('./dist/esm/preset/addDecorator'));
|
|
}
|
|
return [...entry, ...knobsConfig];
|
|
}
|
|
|
|
module.exports = { managerEntries, config };
|