mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* Fixed core unit test and excluded instable ones * AAE-23287 migrate to storybook 8 --------- Co-authored-by: Vito Albano <vito.albano@hyland.com>
22 lines
894 B
JavaScript
22 lines
894 B
JavaScript
const rootMain = require('../../../.storybook/main');
|
|
|
|
module.exports = {
|
|
...rootMain,
|
|
framework: "@storybook/angular",
|
|
core: { ...rootMain.core, builder: 'webpack5' },
|
|
stories: [
|
|
...rootMain.stories,
|
|
'../../core/**/*.stories.@(js|jsx|ts|tsx)',
|
|
'../../content-services/**/*.stories.@(js|jsx|ts|tsx)',
|
|
'../../process-services-cloud/**/*.stories.@(js|jsx|ts|tsx)'
|
|
],
|
|
staticDirs: [
|
|
...rootMain.staticDirs,
|
|
{ from: '../../core/src/lib/i18n', to: 'assets/adf-core/i18n' },
|
|
{ from: '../../core/src/lib/assets/images', to: 'assets/images' },
|
|
{ from: '../../content-services/src/lib/i18n', to: 'assets/adf-content-services/i18n' },
|
|
{ from: '../../process-services-cloud/src/lib/i18n', to: 'assets/adf-process-services-cloud/i18n' }
|
|
],
|
|
addons: ['@storybook/addon-essentials', ...rootMain.addons]
|
|
};
|