15 lines
327 B
JavaScript
15 lines
327 B
JavaScript
|
/**
|
||
|
* to load the built addon in this test Storybook
|
||
|
*/
|
||
|
function previewAnnotations(entry = []) {
|
||
|
return [...entry, require.resolve("../dist/preview.mjs")];
|
||
|
}
|
||
|
|
||
|
function managerEntries(entry = []) {
|
||
|
return [...entry, require.resolve("../dist/manager.mjs")];
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
managerEntries,
|
||
|
previewAnnotations,
|
||
|
};
|