Skip to content

Commit

Permalink
Merge pull request #1607 from DSD-DBS/reduce-storybook-logging
Browse files Browse the repository at this point in the history
fix: Reduce Storybook log level and fix warnings
  • Loading branch information
MoritzWeber0 authored Jun 5, 2024
2 parents 561e5f4 + 86ee007 commit bfa900d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/.storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import type { StorybookConfig } from '@storybook/angular';

const config: StorybookConfig = {
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
stories: ['../src/**/*.mdx', '../src/**/*.stories.ts'],
addons: [
'@storybook/addon-links',
'@storybook/addon-essentials',
Expand Down
2 changes: 1 addition & 1 deletion frontend/.storybook/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"resolveJsonModule": true
},
"exclude": ["../src/test.ts", "../src/**/*.spec.ts"],
"include": ["../src/**/*", "./preview.ts"],
"include": ["./preview.ts", "../src/polyfills.ts", "../src/**/*.stories.ts"],
"files": ["./typings.d.ts"]
}
2 changes: 1 addition & 1 deletion frontend/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ test:
fi

storybook:
ng run capellacollab:storybook
ng run capellacollab:storybook --quiet

openapi:
rm -rf src/app/openapi && mkdir -p src/app/openapi
Expand Down

0 comments on commit bfa900d

Please sign in to comment.