Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
maximiliani committed Oct 29, 2024
1 parent ac94e09 commit a45e616
Show file tree
Hide file tree
Showing 5 changed files with 114 additions and 3 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
/loader/
/.storybook/
/.stencil/
/storybook-static/
7 changes: 5 additions & 2 deletions .storybook/main.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
export default {
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
addons: [
'@storybook/addon-links',
'@storybook/addon-essentials'
],
staticDirs: [{ from: '../dist', to: '/assets' }, { from: '../loader', to: '/assets' }],
framework: '@storybook/web-components-vite',
docs: {
source: {
type: 'code',
},
}
},
core: {
disableTelemetry: true,
Expand Down
2 changes: 2 additions & 0 deletions .storybook/preview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ export default {
},
},
},

tags: ['autodocs']
};
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default [
{ files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'] },
{ files: ['**/*.js'], languageOptions: { sourceType: 'commonjs' } },
{ languageOptions: { globals: globals.browser } },
{ ignores: ['node_modules/', 'dist/', 'www/', 'loader/', '.stencil/', '.storybook/'] },
{ ignores: ['node_modules/', 'dist/', 'www/', 'loader/', '.stencil/', '.storybook/', 'storybook-static'] },
...storybook.configs['flat/recommended'],
eslintConfigPrettier,
pluginJs.configs.recommended,
Expand Down
105 changes: 105 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a45e616

Please sign in to comment.