Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore(deps): update Storybook dependencies to v10.0.6
  • Loading branch information
dgonzalezr committed Nov 10, 2025
commit 7b8ad6d4af6681035d5e1fe1d59575ee5ad4bce0
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"@babel/preset-react": "7.27.1",
"@beeq/storybook-addon-html": "6.0.0",
"@biomejs/biome": "2.2.7",
"@chromatic-com/storybook": "4.1.1",
"@chromatic-com/storybook": "4.1.2",
"@commitlint/cli": "19.8.1",
"@commitlint/config-angular": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
Expand All @@ -77,12 +77,12 @@
"@stencil/react-output-target": "1.2.0",
"@stencil/sass": "3.2.2",
"@stencil/vue-output-target": "0.11.8",
"@storybook/addon-a11y": "10.0.5",
"@storybook/addon-docs": "10.0.5",
"@storybook/addon-links": "10.0.5",
"@storybook/builder-vite": "10.0.5",
"@storybook/addon-a11y": "10.0.6",
"@storybook/addon-docs": "10.0.6",
"@storybook/addon-links": "10.0.6",
"@storybook/builder-vite": "10.0.6",
"@storybook/mdx2-csf": "1.1.0",
"@storybook/web-components-vite": "10.0.5",
"@storybook/web-components-vite": "10.0.6",
"@swc-node/register": "1.11.1",
"@swc/core": "1.14.0",
"@swc/helpers": "0.5.17",
Expand All @@ -99,7 +99,7 @@
"autoprefixer": "10.4.21",
"babel-jest": "29.7.0",
"cem-plugin-jsdoc-example": "0.0.9",
"chromatic": "13.1.3",
"chromatic": "13.3.3",
"core-js": "3.44.0",
"custom-element-vs-code-integration": "1.5.0",
"decompress": "4.2.1",
Expand Down Expand Up @@ -127,7 +127,7 @@
"puppeteer": "24.15.0",
"react-syntax-highlighter": "15.6.1",
"stencil-tailwind-plugin": "1.8.0",
"storybook": "10.0.5",
"storybook": "10.0.6",
"stylelint": "16.23.1",
"stylelint-config-standard": "37.0.0",
"stylelint-config-standard-scss": "14.0.0",
Expand All @@ -154,6 +154,7 @@
"jest-environment-jsdom": "29.7.0",
"nx": "22.0.2",
"less": "4.3.0",
"storybook": "10.0.6",
"stylus": "github:stylus/stylus#0.64.0"
}
},
Expand Down
5 changes: 5 additions & 0 deletions packages/beeq/.storybook/main.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
import { createRequire } from 'node:module';
import { dirname, join } from 'node:path';
import { fileURLToPath } from 'node:url';

import type { StorybookConfig } from '@storybook/web-components-vite';

// biome-ignore-start lint/style/useNamingConvention: Storybook has become fully ESM, thus CJS constants (require, __dirname, __filename) will not be defined.
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
// biome-ignore-end lint/style/useNamingConvention: Storybook has become fully ESM, thus CJS constants (require, __dirname, __filename) will not be defined.
const require = createRequire(import.meta.url);

export default {
Expand Down
3 changes: 2 additions & 1 deletion packages/beeq/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"compilerOptions": {
"declaration": true,
"jsx": "react",
"jsxFactory": "h"
"jsxFactory": "h",
"moduleResolution": "bundler"
}
}
Loading