Skip to content

Commit c56027f

Browse files
authored
Merge pull request #28 from make-software/featture/add-activity-feed-item-deploy-actions
2 parents 7558b9e + 30ec91d commit c56027f

68 files changed

Lines changed: 8070 additions & 24 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.storybook/main.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
import type { StorybookConfig } from '@storybook/react-vite';
22
import remarkGfm from 'remark-gfm';
33

4+
5+
async function filterStories(list): Promise<StoriesEntry[]> {
6+
console.log(list)
7+
return ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)']
8+
}
9+
410
const config: StorybookConfig = {
5-
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
11+
stories: async (list: StoriesEntry[]) => [
12+
...(await filterStories(list)),
13+
],
614
addons: [
715
{
816
name: '@storybook/addon-docs',

0 commit comments

Comments
 (0)