Skip to content

chore(deps-dev): bump the development-dependencies group across 1 directory with 25 updates#166

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/development-dependencies-f4c800f0f6
Open

chore(deps-dev): bump the development-dependencies group across 1 directory with 25 updates#166
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/development-dependencies-f4c800f0f6

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 24, 2026

Bumps the development-dependencies group with 18 updates in the / directory:

Package From To
@biomejs/biome 2.4.10 2.4.13
@changesets/cli 2.30.0 2.31.0
@changesets/get-github-info 0.7.0 0.8.0
@nx/storybook 22.6.3 22.7.0
@nx/vite 22.6.3 22.7.0
@vitest/browser 4.1.2 4.1.5
esbuild 0.27.4 0.28.0
markdownlint-cli2 0.20.0 0.22.1
nx 22.6.5 22.7.0
@storybook/addon-a11y 10.3.3 10.3.5
@storybook/addon-docs 10.3.3 10.3.5
@storybook/addon-onboarding 10.3.3 10.3.5
@storybook/react-vite 10.3.3 10.3.5
@tailwindcss/postcss 4.2.2 4.2.4
postcss 8.5.8 8.5.10
vitest-browser-react 2.1.0 2.2.0
shx 0.3.4 0.4.0
ajv 8.18.0 8.20.0

Updates @biomejs/biome from 2.4.10 to 2.4.13

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.13

2.4.13

Patch Changes

  • #9969 c5eb92b Thanks @​officialasishkumar! - Added the nursery rule noUnnecessaryTemplateExpression, which disallows template literals that only contain string literal expressions. These can be replaced with a simpler string literal.

    For example, the following code triggers the rule:

    const a = `${"hello"}`; // can be 'hello'
    const b = `${"prefix"}_suffix`; // can be 'prefix_suffix'
    const c = `${"a"}${"b"}`; // can be 'ab'
  • #10037 f785e8c Thanks @​minseong0324! - Fixed #9810: noMisleadingReturnType no longer reports false positives on a getter with a matching setter in the same namespace.

    class Store {
      get status(): string {
        if (Math.random() > 0.5) return "loading";
        return "idle";
      }
      set status(v: string) {}
    }
  • #10084 5e2f90c Thanks @​jiwon79! - Fixed #10034: noUselessEscapeInRegex no longer flags escapes of ClassSetReservedPunctuator characters (&, !, #, %, ,, :, ;, <, =, >, @, `, ~) inside v-flag character classes as useless. These characters are reserved as individual code points in v-mode, so the escape is required.

    The following pattern is now considered valid:

    /[a-z\&]/v;
  • #10063 c9ffa16 Thanks @​Netail! - Added extra rule sources from ESLint CSS. biome migrate eslint should do a bit better detecting rules in your eslint configurations.

  • #10035 946b50e Thanks @​Netail! - Fixed #10032: useIframeSandbox now flags if there's no initializer value.

  • #9865 68fb8d4 Thanks @​dyc3! - Added the new nursery rule useDomNodeTextContent, which prefers textContent over innerText for DOM node text access and destructuring.

    For example, the following snippet triggers the rule:

    const foo = node.innerText;
  • #10023 bd1e74f Thanks @​ematipico! - Added a new nursery rule noReactNativeDeepImports that disallows deep imports from the react-native package. Internal paths like react-native/Libraries/... are not part of the public API and may change between versions.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.13

Patch Changes

  • #9969 c5eb92b Thanks @​officialasishkumar! - Added the nursery rule noUnnecessaryTemplateExpression, which disallows template literals that only contain string literal expressions. These can be replaced with a simpler string literal.

    For example, the following code triggers the rule:

    const a = `${"hello"}`; // can be 'hello'
    const b = `${"prefix"}_suffix`; // can be 'prefix_suffix'
    const c = `${"a"}${"b"}`; // can be 'ab'
  • #10037 f785e8c Thanks @​minseong0324! - Fixed #9810: noMisleadingReturnType no longer reports false positives on a getter with a matching setter in the same namespace.

    class Store {
      get status(): string {
        if (Math.random() > 0.5) return "loading";
        return "idle";
      }
      set status(v: string) {}
    }
  • #10084 5e2f90c Thanks @​jiwon79! - Fixed #10034: noUselessEscapeInRegex no longer flags escapes of ClassSetReservedPunctuator characters (&, !, #, %, ,, :, ;, <, =, >, @, `, ~) inside v-flag character classes as useless. These characters are reserved as individual code points in v-mode, so the escape is required.

    The following pattern is now considered valid:

    /[a-z\&]/v;
  • #10063 c9ffa16 Thanks @​Netail! - Added extra rule sources from ESLint CSS. biome migrate eslint should do a bit better detecting rules in your eslint configurations.

  • #10035 946b50e Thanks @​Netail! - Fixed #10032: useIframeSandbox now flags if there's no initializer value.

  • #9865 68fb8d4 Thanks @​dyc3! - Added the new nursery rule useDomNodeTextContent, which prefers textContent over innerText for DOM node text access and destructuring.

    For example, the following snippet triggers the rule:

    const foo = node.innerText;
  • #10023 bd1e74f Thanks @​ematipico! - Added a new nursery rule noReactNativeDeepImports that disallows deep imports from the react-native package. Internal paths like react-native/Libraries/... are not part of the public API and may change between versions.

    For example, the following code triggers the rule:

... (truncated)

Commits

Updates @changesets/cli from 2.30.0 to 2.31.0

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.31.0

Minor Changes

  • #1889 96ca062 Thanks @​mixelburg! - Error on unsupported flags for individual CLI commands and print the matching command usage to make mistakes easier to spot.

  • #1873 42943b7 Thanks @​mixelburg! - Respond to --help on all subcommands. Previously, --help was only handled when it was the sole argument; passing it alongside a subcommand (e.g. changeset version --help) would silently execute the command instead. Now --help always exits early and prints per-command usage when a known subcommand is provided, or the general help text otherwise.

Patch Changes

  • d2121dc Thanks @​Andarist! - Fix npm auth for path-based registries during publish by preserving configured registry URLs instead of normalizing them.

  • #1888 036fdd4 Thanks @​mixelburg! - Fix several changeset version issues with workspace protocol dependencies. Valid explicit workspace: ranges and aliases are no longer rewritten unnecessarily, and workspace path references are handled correctly during versioning.

  • #1903 5c4731f Thanks @​Andarist! - Gracefully handle stale npm info data leading to duplicate publish attempts.

  • #1867 f61e716 Thanks @​Andarist! - Improved detection for published state of prerelease-only packages without latest dist-tag on GitHub Packages registry.

  • Updated dependencies [036fdd4, 036fdd4, 036fdd4]:

    • @​changesets/assemble-release-plan@​6.0.10
    • @​changesets/get-dependents-graph@​2.1.4
    • @​changesets/apply-release-plan@​7.1.1
    • @​changesets/get-release-plan@​4.0.16
    • @​changesets/config@​3.1.4
Commits
  • 9cce6db Version Packages (#1897)
  • d2121dc Fix npm auth for path-based registries during publish by preserving configure...
  • 036fdd4 Fix several changeset version issues with workspace protocol dependencies (...
  • 5c4731f Gracefully handle stale npm info data leading to duplicate publish attempts...
  • 96ca062 Error on unsupported flags for individual CLI commands (#1889)
  • 42943b7 fix(cli): respond to --help on all subcommands (#1873)
  • f61e716 Improved detection for published state of prerelease-only packages without ...
  • See full diff in compare view

Updates @changesets/get-github-info from 0.7.0 to 0.8.0

Release notes

Sourced from @​changesets/get-github-info's releases.

@​changesets/get-github-info@​0.8.0

Minor Changes

  • #1758 e462d89 Thanks @​jdeniau! - Add scopes automatically in the GitHub new token link in the printed error message

Patch Changes

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​changesets/get-github-info since your current version.


Updates @nx/storybook from 22.6.3 to 22.7.0

Release notes

Sourced from @​nx/storybook's releases.

22.7.0 (2026-04-24)

🚀 Features

  • core: add .nx/self-healing to .gitignore (#34855)
  • core: decouple DB version from Nx version and share DB across worktrees (#34942)
  • core: auto-open browser for Cloud setup URL during create-nx-workspace (#35014)
  • core: allow generate command to skip project graph creation (#35170)
  • core: remove polygraph cloud passthrough (#35153)
  • core: use CNW variant 1 cloud prompt in nx init (#35155)
  • core: add source map annotations to nx show target (#35225)
  • core: prompt for setup mode when running nx init in empty git directory (#35226)
  • core: add json input type for selective JSON field hashing (#35248)
  • core: update nx-set-shas usage to v5 (#34934)
  • core: add NX_BAIL environment variable (#34711)
  • core: add page up/down to tui shortcuts (#34525)
  • core: add logging and progress message types to daemon (#35342)
  • dotnet: add ci-workflow generator (#33321)
  • js: support nx.sync.ignoredDependencies in typescript-sync (#35401)
  • misc: a/b test cloud prompt copy in create-nx-workspace (#35039)
  • misc: update nx init telemetry meta from CSV to JSON format (#35076)
  • misc: lock in CNW cloud prompt A/B winner and add new variants (#35154)
  • nx-dev: add conditional blog/changelog proxy in edge function (#35043)
  • nx-dev: add nx-blog sitemap to root sitemap index (#35363)
  • repo: add nx-labs repo target and use glob pattern for update-all-repos (#34999)
  • repo: enable tsgo compiler for nx package (#35047)
  • repo: enforce no-disabled-tests via ESLint with per-project warning caps (#35122)
  • repo: add e2e test for nx build process verification (#35119)
  • vite: add compiler option to vite plugin for tsgo support (#35429, #33821, #35047, #35167)

🩹 Fixes

  • angular: update duplicate migration keys (#34961)
  • angular: add storybook and playwright as implicit dependencies (#35224)
  • angular: preserve specific file paths in tsconfig when adding secondary entry point (#35254, #33051)
  • angular: fall back to addUndefinedDefaults when addUndefinedObjectDefaults is unavailable (#35290)
  • angular-rspack: ensure rebuild chunks emitted summary accurate (#34979, #34936)
  • angular-rspack: normalize Windows path separators for i18n (#35252, #32864)
  • angular-rspack: add fileReplacements to resolve.alias (#34197)
  • angular-rspack: fixes issues with angular-rspack hmr (#35294, #35040)
  • bundling: disable swc input source map resolution (#35010, #32671)
  • bundling: bump esbuild for new projects to a version compatible with vite 8 (#35132)
  • bundling: declare tsconfig.json as input for esbuild targets (#35432)
  • core: skip analytics and DB connection when global bin hands off to local (#34914)
  • core: properly quote shell metacharacters in CLI args passed to tasks (#34491, #32305, #26682)
  • core: avoid redundant project graph requests in ngcli adapter (#34907)
  • core: ensure postTasksExecution fires on SIGINT for continuous tasks (#34876, #34623, #34869)
  • core: improve error handling in nx migrate registry fetching (#34926, #33014, #33135)
  • core: remove CRA migration logic from nx init (#34912)
  • core: pass collectInputs flag through daemon IPC for task hashing (#34915)

... (truncated)

Commits
  • 0e3b098 chore(misc): declare lazy-loaded @nx/* packages as optional peers for storybo...
  • 4bbd4b1 chore(repo): migrate nx repo to eslint v9 flat config (#35359)
  • facec58 fix(misc): use workspace root for package manager detection and normalize pat...
  • 887fca4 fix(repo): narrow copy-assets outputs to prevent overlap with build-base (#35...
  • a040a93 fix(repo): add copy-assets plugin and migrate all packages from legacy-post-b...
  • 732a08c chore(core): build nx to local dist and use nodenext (#34111)
  • c1a93cb fix(core): set windowsHide: true on all child process spawns (#34894)
  • See full diff in compare view

Updates @nx/vite from 22.6.3 to 22.7.0

Release notes

Sourced from @​nx/vite's releases.

22.7.0 (2026-04-24)

🚀 Features

  • core: add .nx/self-healing to .gitignore (#34855)
  • core: decouple DB version from Nx version and share DB across worktrees (#34942)
  • core: auto-open browser for Cloud setup URL during create-nx-workspace (#35014)
  • core: allow generate command to skip project graph creation (#35170)
  • core: remove polygraph cloud passthrough (#35153)
  • core: use CNW variant 1 cloud prompt in nx init (#35155)
  • core: add source map annotations to nx show target (#35225)
  • core: prompt for setup mode when running nx init in empty git directory (#35226)
  • core: add json input type for selective JSON field hashing (#35248)
  • core: update nx-set-shas usage to v5 (#34934)
  • core: add NX_BAIL environment variable (#34711)
  • core: add page up/down to tui shortcuts (#34525)
  • core: add logging and progress message types to daemon (#35342)
  • dotnet: add ci-workflow generator (#33321)
  • js: support nx.sync.ignoredDependencies in typescript-sync (#35401)
  • misc: a/b test cloud prompt copy in create-nx-workspace (#35039)
  • misc: update nx init telemetry meta from CSV to JSON format (#35076)
  • misc: lock in CNW cloud prompt A/B winner and add new variants (#35154)
  • nx-dev: add conditional blog/changelog proxy in edge function (#35043)
  • nx-dev: add nx-blog sitemap to root sitemap index (#35363)
  • repo: add nx-labs repo target and use glob pattern for update-all-repos (#34999)
  • repo: enable tsgo compiler for nx package (#35047)
  • repo: enforce no-disabled-tests via ESLint with per-project warning caps (#35122)
  • repo: add e2e test for nx build process verification (#35119)
  • vite: add compiler option to vite plugin for tsgo support (#35429, #33821, #35047, #35167)

🩹 Fixes

  • angular: update duplicate migration keys (#34961)
  • angular: add storybook and playwright as implicit dependencies (#35224)
  • angular: preserve specific file paths in tsconfig when adding secondary entry point (#35254, #33051)
  • angular: fall back to addUndefinedDefaults when addUndefinedObjectDefaults is unavailable (#35290)
  • angular-rspack: ensure rebuild chunks emitted summary accurate (#34979, #34936)
  • angular-rspack: normalize Windows path separators for i18n (#35252, #32864)
  • angular-rspack: add fileReplacements to resolve.alias (#34197)
  • angular-rspack: fixes issues with angular-rspack hmr (#35294, #35040)
  • bundling: disable swc input source map resolution (#35010, #32671)
  • bundling: bump esbuild for new projects to a version compatible with vite 8 (#35132)
  • bundling: declare tsconfig.json as input for esbuild targets (#35432)
  • core: skip analytics and DB connection when global bin hands off to local (#34914)
  • core: properly quote shell metacharacters in CLI args passed to tasks (#34491, #32305, #26682)
  • core: avoid redundant project graph requests in ngcli adapter (#34907)
  • core: ensure postTasksExecution fires on SIGINT for continuous tasks (#34876, #34623, #34869)
  • core: improve error handling in nx migrate registry fetching (#34926, #33014, #33135)
  • core: remove CRA migration logic from nx init (#34912)
  • core: pass collectInputs flag through daemon IPC for task hashing (#34915)

... (truncated)

Commits
  • 6c6d399 feat(vite): add compiler option to vite plugin for tsgo support (#35429)
  • 4bbd4b1 chore(repo): migrate nx repo to eslint v9 flat config (#35359)
  • 1507788 chore(repo): short-circuit isUsingTsSolutionSetup in unit tests (#35371)
  • 878ec01 fix(vitest): infer ancestor tsconfig files as test task inputs (#35241)
  • 931f86c fix(vitest): add dependent task output files as inputs for vitest test target...
  • dc479c5 fix(js): stop generating baseUrl in tsconfig, use ./ prefix for path mappings...
  • facec58 fix(misc): use workspace root for package manager detection and normalize pat...
  • 887fca4 fix(repo): narrow copy-assets outputs to prevent overlap with build-base (#35...
  • 37eb4ec fix(bundling): bump esbuild for new projects to a version compatible with vit...
  • 2cfc289 fix(react): force Vite 7 when using React Router in framework mode (#35101)
  • Additional commits viewable in compare view

Updates @nx/vitest from 22.6.3 to 22.7.0

Release notes

Sourced from @​nx/vitest's releases.

22.7.0 (2026-04-24)

🚀 Features

  • core: add .nx/self-healing to .gitignore (#34855)
  • core: decouple DB version from Nx version and share DB across worktrees (#34942)
  • core: auto-open browser for Cloud setup URL during create-nx-workspace (#35014)
  • core: allow generate command to skip project graph creation (#35170)
  • core: remove polygraph cloud passthrough (#35153)
  • core: use CNW variant 1 cloud prompt in nx init (#35155)
  • core: add source map annotations to nx show target (#35225)
  • core: prompt for setup mode when running nx init in empty git directory (#35226)
  • core: add json input type for selective JSON field hashing (#35248)
  • core: update nx-set-shas usage to v5 (#34934)
  • core: add NX_BAIL environment variable (#34711)
  • core: add page up/down to tui shortcuts (#34525)
  • core: add logging and progress message types to daemon (#35342)
  • dotnet: add ci-workflow generator (#33321)
  • js: support nx.sync.ignoredDependencies in typescript-sync (#35401)
  • misc: a/b test cloud prompt copy in create-nx-workspace (#35039)
  • misc: update nx init telemetry meta from CSV to JSON format (#35076)
  • misc: lock in CNW cloud prompt A/B winner and add new variants (#35154)
  • nx-dev: add conditional blog/changelog proxy in edge function (#35043)
  • nx-dev: add nx-blog sitemap to root sitemap index (#35363)
  • repo: add nx-labs repo target and use glob pattern for update-all-repos (#34999)
  • repo: enable tsgo compiler for nx package (#35047)
  • repo: enforce no-disabled-tests via ESLint with per-project warning caps (#35122)
  • repo: add e2e test for nx build process verification (#35119)
  • vite: add compiler option to vite plugin for tsgo support (#35429, #33821, #35047, #35167)

🩹 Fixes

  • angular: update duplicate migration keys (#34961)
  • angular: add storybook and playwright as implicit dependencies (#35224)
  • angular: preserve specific file paths in tsconfig when adding secondary entry point (#35254, #33051)
  • angular: fall back to addUndefinedDefaults when addUndefinedObjectDefaults is unavailable (#35290)
  • angular-rspack: ensure rebuild chunks emitted summary accurate (#34979, #34936)
  • angular-rspack: normalize Windows path separators for i18n (#35252, #32864)
  • angular-rspack: add fileReplacements to resolve.alias (#34197)
  • angular-rspack: fixes issues with angular-rspack hmr (#35294, #35040)
  • bundling: disable swc input source map resolution (#35010, #32671)
  • bundling: bump esbuild for new projects to a version compatible with vite 8 (#35132)
  • bundling: declare tsconfig.json as input for esbuild targets (#35432)
  • core: skip analytics and DB connection when global bin hands off to local (#34914)
  • core: properly quote shell metacharacters in CLI args passed to tasks (#34491, #32305, #26682)
  • core: avoid redundant project graph requests in ngcli adapter (#34907)
  • core: ensure postTasksExecution fires on SIGINT for continuous tasks (#34876, #34623, #34869)
  • core: improve error handling in nx migrate registry fetching (#34926, #33014, #33135)
  • core: remove CRA migration logic from nx init (#34912)
  • core: pass collectInputs flag through daemon IPC for task hashing (#34915)

... (truncated)

Commits
  • 0e3b098 chore(misc): declare lazy-loaded @nx/* packages as optional peers for storybo...
  • 4bbd4b1 chore(repo): migrate nx repo to eslint v9 flat config (#35359)
  • 878ec01 fix(vitest): infer ancestor tsconfig files as test task inputs (#35241)
  • 931f86c fix(vitest): add dependent task output files as inputs for vitest test target...
  • facec58 fix(misc): use workspace root for package manager detection and normalize pat...
  • 887fca4 fix(repo): narrow copy-assets outputs to prevent overlap with build-base (#35...
  • c9253fb fix(vite): update vitest and plugin-react-swc versions for vite 8 compat (#35...
  • a040a93 fix(repo): add copy-assets plugin and migrate all packages from legacy-post-b...
  • c699048 fix(vite): add support for Vite 8 (#34850)
  • 7da0798 fix(vitest): resolve addPlugin default in init generator (#34990)
  • Additional commits viewable in compare view

Updates @vitest/browser from 4.1.2 to 4.1.5

Release notes

Sourced from @​vitest/browser's releases.

v4.1.5

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub

v4.1.4

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub

v4.1.3

   🚀 Experimental Features

... (truncated)

Commits
  • e399846 chore:...

    Description has been truncated

…ectory with 25 updates

Bumps the development-dependencies group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.10` | `2.4.13` |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.30.0` | `2.31.0` |
| [@changesets/get-github-info](https://github.com/changesets/changesets) | `0.7.0` | `0.8.0` |
| [@nx/storybook](https://github.com/nrwl/nx/tree/HEAD/packages/storybook) | `22.6.3` | `22.7.0` |
| [@nx/vite](https://github.com/nrwl/nx/tree/HEAD/packages/vite) | `22.6.3` | `22.7.0` |
| [@vitest/browser](https://github.com/vitest-dev/vitest/tree/HEAD/packages/browser) | `4.1.2` | `4.1.5` |
| [esbuild](https://github.com/evanw/esbuild) | `0.27.4` | `0.28.0` |
| [markdownlint-cli2](https://github.com/DavidAnson/markdownlint-cli2) | `0.20.0` | `0.22.1` |
| [nx](https://github.com/nrwl/nx/tree/HEAD/packages/nx) | `22.6.5` | `22.7.0` |
| [@storybook/addon-a11y](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/a11y) | `10.3.3` | `10.3.5` |
| [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs) | `10.3.3` | `10.3.5` |
| [@storybook/addon-onboarding](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/onboarding) | `10.3.3` | `10.3.5` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `10.3.3` | `10.3.5` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.2.2` | `4.2.4` |
| [postcss](https://github.com/postcss/postcss) | `8.5.8` | `8.5.10` |
| [vitest-browser-react](https://github.com/vitest-community/vitest-browser-react) | `2.1.0` | `2.2.0` |
| [shx](https://github.com/shelljs/shx) | `0.3.4` | `0.4.0` |
| [ajv](https://github.com/ajv-validator/ajv) | `8.18.0` | `8.20.0` |



Updates `@biomejs/biome` from 2.4.10 to 2.4.13
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.13/packages/@biomejs/biome)

Updates `@changesets/cli` from 2.30.0 to 2.31.0
- [Release notes](https://github.com/changesets/changesets/releases)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/cli@2.30.0...@changesets/cli@2.31.0)

Updates `@changesets/get-github-info` from 0.7.0 to 0.8.0
- [Release notes](https://github.com/changesets/changesets/releases)
- [Commits](https://github.com/changesets/changesets/commits/@changesets/get-github-info@0.8.0)

Updates `@nx/storybook` from 22.6.3 to 22.7.0
- [Release notes](https://github.com/nrwl/nx/releases)
- [Commits](https://github.com/nrwl/nx/commits/22.7.0/packages/storybook)

Updates `@nx/vite` from 22.6.3 to 22.7.0
- [Release notes](https://github.com/nrwl/nx/releases)
- [Commits](https://github.com/nrwl/nx/commits/22.7.0/packages/vite)

Updates `@nx/vitest` from 22.6.3 to 22.7.0
- [Release notes](https://github.com/nrwl/nx/releases)
- [Commits](https://github.com/nrwl/nx/commits/22.7.0/packages/vitest)

Updates `@vitest/browser` from 4.1.2 to 4.1.5
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.5/packages/browser)

Updates `@vitest/browser-playwright` from 4.1.2 to 4.1.5
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.5/packages/browser-playwright)

Updates `@vitest/coverage-v8` from 4.1.2 to 4.1.5
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.5/packages/coverage-v8)

Updates `@vitest/ui` from 4.1.2 to 4.1.5
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.5/packages/ui)

Updates `esbuild` from 0.27.4 to 0.28.0
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.4...v0.28.0)

Updates `markdownlint-cli2` from 0.20.0 to 0.22.1
- [Changelog](https://github.com/DavidAnson/markdownlint-cli2/blob/main/CHANGELOG.md)
- [Commits](DavidAnson/markdownlint-cli2@v0.20.0...v0.22.1)

Updates `nx` from 22.6.5 to 22.7.0
- [Release notes](https://github.com/nrwl/nx/releases)
- [Commits](https://github.com/nrwl/nx/commits/22.7.0/packages/nx)

Updates `vitest` from 4.1.2 to 4.1.5
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.5/packages/vitest)

Updates `@storybook/addon-a11y` from 10.3.3 to 10.3.5
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.3.5/code/addons/a11y)

Updates `@storybook/addon-docs` from 10.3.3 to 10.3.5
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.3.5/code/addons/docs)

Updates `@storybook/addon-onboarding` from 10.3.3 to 10.3.5
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.3.5/code/addons/onboarding)

Updates `@storybook/react-vite` from 10.3.3 to 10.3.5
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.3.5/code/frameworks/react-vite)

Updates `storybook` from 10.3.3 to 10.3.5
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.3.5/code/core)

Updates `@tailwindcss/postcss` from 4.2.2 to 4.2.4
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.2.4/packages/@tailwindcss-postcss)

Updates `postcss` from 8.5.8 to 8.5.10
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.8...8.5.10)

Updates `tailwindcss` from 4.2.2 to 4.2.4
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.2.4/packages/tailwindcss)

Updates `vitest-browser-react` from 2.1.0 to 2.2.0
- [Release notes](https://github.com/vitest-community/vitest-browser-react/releases)
- [Commits](vitest-community/vitest-browser-react@v2.1.0...v2.2.0)

Updates `shx` from 0.3.4 to 0.4.0
- [Release notes](https://github.com/shelljs/shx/releases)
- [Changelog](https://github.com/shelljs/shx/blob/main/CHANGELOG.md)
- [Commits](shelljs/shx@v0.3.4...v0.4.0)

Updates `ajv` from 8.18.0 to 8.20.0
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](ajv-validator/ajv@v8.18.0...v8.20.0)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@changesets/cli"
  dependency-version: 2.31.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@changesets/get-github-info"
  dependency-version: 0.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@nx/storybook"
  dependency-version: 22.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@nx/vite"
  dependency-version: 22.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@nx/vitest"
  dependency-version: 22.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@vitest/browser"
  dependency-version: 4.1.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@vitest/browser-playwright"
  dependency-version: 4.1.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@vitest/ui"
  dependency-version: 4.1.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: esbuild
  dependency-version: 0.28.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: markdownlint-cli2
  dependency-version: 0.22.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: nx
  dependency-version: 22.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: vitest
  dependency-version: 4.1.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-a11y"
  dependency-version: 10.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-docs"
  dependency-version: 10.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-onboarding"
  dependency-version: 10.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/react-vite"
  dependency-version: 10.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: storybook
  dependency-version: 10.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: postcss
  dependency-version: 8.5.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: tailwindcss
  dependency-version: 4.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: vitest-browser-react
  dependency-version: 2.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: shx
  dependency-version: 0.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: ajv
  dependency-version: 8.20.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 24, 2026
@dependabot dependabot Bot requested a review from a team as a code owner April 24, 2026 23:50
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 24, 2026
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Apr 24, 2026

⚠️ No Changeset found

Latest commit: 59c0448

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants