Skip to content

deps(dev): bump the development group across 1 directory with 8 updates#29

Merged
Vrtak-CZ merged 2 commits intomainfrom
dependabot/bun/development-fce9c2201c
May 3, 2026
Merged

deps(dev): bump the development group across 1 directory with 8 updates#29
Vrtak-CZ merged 2 commits intomainfrom
dependabot/bun/development-fce9c2201c

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 3, 2026

Bumps the development group with 8 updates in the / directory:

Package From To
@biomejs/biome 2.4.12 2.4.14
@cookielab.io/biome-config 1.4.0 2.0.0
@tailwindcss/vite 4.2.2 4.2.4
@types/bun 1.3.12 1.3.13
tailwindcss 4.2.2 4.2.4
@storybook/react 10.3.5 10.3.6
@storybook/react-vite 10.3.5 10.3.6
storybook 10.3.5 10.3.6

Updates @biomejs/biome from 2.4.12 to 2.4.14

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.14

2.4.14

Patch Changes

  • #9393 491b171 Thanks @​dyc3! - Added the nursery rule useTestHooksOnTop in the test domain. The rule flags lifecycle hooks (beforeEach, beforeAll, afterEach, afterAll) that appear after test cases in the same block, enforcing that hooks are defined before any test case.

  • #10157 eefc5ab Thanks @​dyc3! - Fixed #7882: The HTML parser will now emit better diagnostics when it encounters a void element with a closing tag, such as <br></br>. Previously, the parser would emit multiple diagnostics with conflicting advice. Now it emits a single diagnostic that clearly states that void elements should not have closing tags.

  • #10054 0e9f569 Thanks @​minseong0324! - noMisleadingReturnType no longer misses widening from concrete object types, class instances, object literals, tuples, functions, and regular expressions to : object.

    A function annotated : object returning an object literal:

    function f(): object {
      return { retry: true };
    }
  • #10116 53269eb Thanks @​jiwon79! - Fixed #6201: noUselessEscapeInRegex no longer flags an escaped backslash followed by - as a useless escape. Patterns like /[\\-]/ are now considered valid because the second \ is the escaped backslash, not an unnecessary escape of the trailing dash.

  • #10092 33d8543 Thanks @​Conaclos! - Fixed #9097: organizeImports no longer adds a blank line between a never-matched group and a matched group.

    Given the following organizeImports options:

    {
      "groups": [":NODE:", ":BLANK_LINE:", ":PACKAGE:", ":BLANK_LINE:", ":PATH:"]
    }

    The following code...

    // Comment
    import "package";
    import "./file.js";

    ...was organized as:

    +
      // Comment
      import "package";
    +
      import "./file.js";

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.14

Patch Changes

  • #9393 491b171 Thanks @​dyc3! - Added the nursery rule useTestHooksOnTop in the test domain. The rule flags lifecycle hooks (beforeEach, beforeAll, afterEach, afterAll) that appear after test cases in the same block, enforcing that hooks are defined before any test case.

  • #10157 eefc5ab Thanks @​dyc3! - Fixed #7882: The HTML parser will now emit better diagnostics when it encounters a void element with a closing tag, such as <br></br>. Previously, the parser would emit multiple diagnostics with conflicting advice. Now it emits a single diagnostic that clearly states that void elements should not have closing tags.

  • #10054 0e9f569 Thanks @​minseong0324! - noMisleadingReturnType no longer misses widening from concrete object types, class instances, object literals, tuples, functions, and regular expressions to : object.

    A function annotated : object returning an object literal:

    function f(): object {
      return { retry: true };
    }
  • #10116 53269eb Thanks @​jiwon79! - Fixed #6201: noUselessEscapeInRegex no longer flags an escaped backslash followed by - as a useless escape. Patterns like /[\\-]/ are now considered valid because the second \ is the escaped backslash, not an unnecessary escape of the trailing dash.

  • #10092 33d8543 Thanks @​Conaclos! - Fixed #9097: organizeImports no longer adds a blank line between a never-matched group and a matched group.

    Given the following organizeImports options:

    {
      "groups": [":NODE:", ":BLANK_LINE:", ":PACKAGE:", ":BLANK_LINE:", ":PATH:"]
    }

    The following code...

    // Comment
    import "package";
    import "./file.js";

    ...was organized as:

    +
      // Comment
      import "package";
    +
      import "./file.js";

    A blank line was added even though the group ':NODE:' doesn't match any imports here. :BLANK_LINE: between never-matched groups and matched groups are now ignored.

... (truncated)

Commits

Updates @cookielab.io/biome-config from 1.4.0 to 2.0.0

Release notes

Sourced from @​cookielab.io/biome-config's releases.

v2.0.0

⚠ BREAKING CHANGES

  • biome: update Biome to 2.4.13 (#30)

Features

  • base: add definition for 'noDrizzleDeleteWithoutWhere' with level 'off' (c89717d)
  • base: add definition for 'noDrizzleUpdateWithoutWhere' with level 'off' (66e1261)
  • base: add definition for 'noEmptyObjectKeys' with level 'error' (df7ebb0)
  • base: add definition for 'noIdenticalTestTitle' with level 'error' (2a9935b)
  • base: add definition for 'noImpliedEval' with level 'error' (b92ae57)
  • base: add definition for 'noLoopFunc' with level 'error' (3db5d0e)
  • base: add definition for 'noMisleadingReturnType' with level 'error' (80b7a86)
  • base: add definition for 'noTopLevelLiterals' with level 'error' (ff98301)
  • base: add definition for 'noUnnecessaryTemplateExpression' with level 'error' (d8eb16c)
  • base: add definition for 'noUnsafePlusOperands' with level 'error' (a1e0539)
  • base: add definition for 'noUntrustedLicenses' with level 'info' (08f7358)
  • base: add definition for 'noUselessTypeConversion' with level 'error' (927f1d0)
  • base: add definition for 'useConsistentTestIt' with level 'error' (0bbdaca)
  • base: add definition for 'useDisposables' with level 'error' (f50eea7)
  • base: add definition for 'useExplicitReturnType' with level 'error' (1256195)
  • base: add definition for 'useImportsFirst' with level 'error' (70bf295)
  • base: add definition for 'useQwikLoaderLocation' with level 'off' (41ab77a)
  • base: add definition for 'useReduceTypeParameter' with level 'error' (af8bd12)
  • base: add definition for 'useRegexpTest' with level 'error' (b7b519f)
  • base: add definition for 'useStringStartsEndsWith' with level 'error' (0e50449)
  • base: add definition for 'useVarsOnTop' with level 'error' (4b3682d)
  • biome: update Biome to 2.4.13 (c48e6c0)
  • biome: update Biome to 2.4.13 (#30) (dd5e371)
  • frontend: add definition for 'noDuplicateSelectors' with level 'error' (b7c2412)
  • frontend: add definition for 'noExcessiveSelectorClasses' with level 'warn' (94be5e6)
  • frontend: add definition for 'noInlineStyles' with level 'warn' (c65a6e4)
  • frontend: add definition for 'useBaseline' with level 'warn' (36ce209)
  • frontend: add definition for 'useDomNodeTextContent' with level 'error' (01dd7a0)
  • frontend: add definition for 'useDomQuerySelector' with level 'error' (6a6cba7)
  • frontend: add definition for 'useIframeSandbox' with level 'error' (cc0be2b)
  • react: add definition for 'noComponentHookFactories' with level 'error' (616a6bf)
  • react: add definition for 'noJsxLeakedDollar' with level 'error' (18f312c)
  • react: add definition for 'noJsxNamespace' with level 'error' (818f69b)
  • react: add definition for 'noReactNativeDeepImports' with level 'error' (9a2a108)
  • react: add definition for 'noReactNativeLiteralColors' with level 'error' (c2c02e1)
  • react: add definition for 'noReactNativeRawText' with level 'error' (b6fc08b)
  • react: add definition for 'useReactAsyncServerFunction' with level 'error' (a29c952)
  • react: add definition for 'useReactNativePlatformComponents' with level 'error' (becea6b)
Changelog

Sourced from @​cookielab.io/biome-config's changelog.

2.0.0 (2026-04-27)

⚠ BREAKING CHANGES

  • biome: update Biome to 2.4.13 (#30)
  • biome: update Biome to 2.4.13

Features

  • base: add definition for 'noDrizzleDeleteWithoutWhere' with level 'off' (c89717d)
  • base: add definition for 'noDrizzleUpdateWithoutWhere' with level 'off' (66e1261)
  • base: add definition for 'noEmptyObjectKeys' with level 'error' (df7ebb0)
  • base: add definition for 'noIdenticalTestTitle' with level 'error' (2a9935b)
  • base: add definition for 'noImpliedEval' with level 'error' (b92ae57)
  • base: add definition for 'noLoopFunc' with level 'error' (3db5d0e)
  • base: add definition for 'noMisleadingReturnType' with level 'error' (80b7a86)
  • base: add definition for 'noTopLevelLiterals' with level 'error' (ff98301)
  • base: add definition for 'noUnnecessaryTemplateExpression' with level 'error' (d8eb16c)
  • base: add definition for 'noUnsafePlusOperands' with level 'error' (a1e0539)
  • base: add definition for 'noUntrustedLicenses' with level 'info' (08f7358)
  • base: add definition for 'noUselessTypeConversion' with level 'error' (927f1d0)
  • base: add definition for 'useConsistentTestIt' with level 'error' (0bbdaca)
  • base: add definition for 'useDisposables' with level 'error' (f50eea7)
  • base: add definition for 'useExplicitReturnType' with level 'error' (1256195)
  • base: add definition for 'useImportsFirst' with level 'error' (70bf295)
  • base: add definition for 'useQwikLoaderLocation' with level 'off' (41ab77a)
  • base: add definition for 'useReduceTypeParameter' with level 'error' (af8bd12)
  • base: add definition for 'useRegexpTest' with level 'error' (b7b519f)
  • base: add definition for 'useStringStartsEndsWith' with level 'error' (0e50449)
  • base: add definition for 'useVarsOnTop' with level 'error' (4b3682d)
  • biome: update Biome to 2.4.13 (c48e6c0)
  • biome: update Biome to 2.4.13 (#30) (dd5e371)
  • frontend: add definition for 'noDuplicateSelectors' with level 'error' (b7c2412)
  • frontend: add definition for 'noExcessiveSelectorClasses' with level 'warn' (94be5e6)
  • frontend: add definition for 'noInlineStyles' with level 'warn' (c65a6e4)
  • frontend: add definition for 'useBaseline' with level 'warn' (36ce209)
  • frontend: add definition for 'useDomNodeTextContent' with level 'error' (01dd7a0)
  • frontend: add definition for 'useDomQuerySelector' with level 'error' (6a6cba7)
  • frontend: add definition for 'useIframeSandbox' with level 'error' (cc0be2b)
  • react: add definition for 'noComponentHookFactories' with level 'error' (616a6bf)
  • react: add definition for 'noJsxLeakedDollar' with level 'error' (18f312c)
  • react: add definition for 'noJsxNamespace' with level 'error' (818f69b)
  • react: add definition for 'noReactNativeDeepImports' with level 'error' (9a2a108)
  • react: add definition for 'noReactNativeLiteralColors' with level 'error' (c2c02e1)
  • react: add definition for 'noReactNativeRawText' with level 'error' (b6fc08b)
  • react: add definition for 'useReactAsyncServerFunction' with level 'error' (a29c952)
  • react: add definition for 'useReactNativePlatformComponents' with level 'error' (becea6b)
Commits
  • d2e9029 chore(release): 2.0.0
  • dd5e371 feat(biome)!: update Biome to 2.4.13 (#30)
  • c4661ab docs(license): add the missing license field into package.json
  • f36a2eb docs(docs): re-generate the documentation
  • 4b3682d feat(base): add definition for 'useVarsOnTop' with level 'error'
  • 0e50449 feat(base): add definition for 'useStringStartsEndsWith' with level 'error'
  • b7b519f feat(base): add definition for 'useRegexpTest' with level 'error'
  • af8bd12 feat(base): add definition for 'useReduceTypeParameter' with level 'error'
  • becea6b feat(react): add definition for 'useReactNativePlatformComponents' with level...
  • a29c952 feat(react): add definition for 'useReactAsyncServerFunction' with level 'error'
  • Additional commits viewable in compare view

Updates @tailwindcss/vite from 4.2.2 to 4.2.4

Release notes

Sourced from @​tailwindcss/vite's releases.

v4.2.4

Fixed

  • Ensure imports in @import and @plugin still resolve correctly when using Vite aliases in @tailwindcss/vite (#19947)

v4.2.3

Fixed

  • Canonicalization: improve canonicalizations for tracking-* utilities by preferring non-negative utilities (e.g. -tracking-tightertracking-wider) (#19827)
  • Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#19829)
  • Ensure query params in imports are considered unique resources when using @tailwindcss/webpack (#19723)
  • Canonicalization: collapse arbitrary values into shorthand utilities (e.g. px-[1.2rem] py-[1.2rem]p-[1.2rem]) (#19837)
  • Canonicalization: collapse border-{t,b}-* into border-y-*, border-{l,r}-* into border-x-*, and border-{t,r,b,l}-* into border-* (#19842)
  • Canonicalization: collapse scroll-m{t,b}-* into scroll-my-*, scroll-m{l,r}-* into scroll-mx-*, and scroll-m{t,r,b,l}-* into scroll-m-* (#19842)
  • Canonicalization: collapse scroll-p{t,b}-* into scroll-py-*, scroll-p{l,r}-* into scroll-px-*, and scroll-p{t,r,b,l}-* into scroll-p-* (#19842)
  • Canonicalization: collapse overflow-{x,y}-* into overflow-* (#19842)
  • Canonicalization: collapse overscroll-{x,y}-* into overscroll-* (#19842)
  • Read from --placeholder-color instead of --background-color for placeholder-* utilities (#19843)
  • Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#19846)
  • Upgrade: use config.content when migrating from Tailwind CSS v3 to Tailwind CSS v4 (#19846)
  • Upgrade: never migrate files that are ignored by git (#19846)
  • Add .env and .env.* to default ignored content files (#19846)
  • Canonicalization: migrate overflow-ellipsis into text-ellipsis (#19849)
  • Canonicalization: migrate start-fullinset-s-full, start-autoinset-s-auto, start-pxinset-s-px, and start-<number>inset-s-<number> as well as negative versions (#19849)
  • Canonicalization: migrate end-fullinset-e-full, end-autoinset-e-auto, end-pxinset-e-px, and end-<number>inset-e-<number> as well as negative versions (#19849)
  • Canonicalization: move the - sign inside the arbitrary value -left-[9rem]left-[-9rem] (#19858)
  • Canonicalization: move the - sign outside the arbitrary value ml-[calc(-1*var(--width))]-ml-(--width) (#19858)
  • Improve performance when scanning JSONL / NDJSON files (#19862)
  • Support NODE_PATH environment variable in standalone CLI (#19617)
Changelog

Sourced from @​tailwindcss/vite's changelog.

[4.2.4] - 2026-04-21

Fixed

  • Ensure imports in @import and @plugin still resolve correctly when using Vite aliases in @tailwindcss/vite (#19947)

[4.2.3] - 2026-04-20

Fixed

  • Canonicalization: improve canonicalization for tracking-* utilities by preferring non-negative utilities (e.g. -tracking-tightertracking-wider) (#19827)
  • Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#19829)
  • Ensure query params in imports are considered unique resources when using @tailwindcss/webpack (#19723)
  • Canonicalization: collapse arbitrary values into shorthand utilities (e.g. px-[1.2rem] py-[1.2rem]p-[1.2rem]) (#19837)
  • Canonicalization: collapse border-{t,b}-* into border-y-*, border-{l,r}-* into border-x-*, and border-{t,r,b,l}-* into border-* (#19842)
  • Canonicalization: collapse scroll-m{t,b}-* into scroll-my-*, scroll-m{l,r}-* into scroll-mx-*, and scroll-m{t,r,b,l}-* into scroll-m-* (#19842)
  • Canonicalization: collapse scroll-p{t,b}-* into scroll-py-*, scroll-p{l,r}-* into scroll-px-*, and scroll-p{t,r,b,l}-* into scroll-p-* (#19842)
  • Canonicalization: collapse overflow-{x,y}-* into overflow-* (#19842)
  • Canonicalization: collapse overscroll-{x,y}-* into overscroll-* (#19842)
  • Read from --placeholder-color instead of --background-color for placeholder-* utilities (#19843)
  • Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#19846)
  • Upgrade: use config.content when migrating from Tailwind CSS v3 to Tailwind CSS v4 (#19846)
  • Upgrade: never migrate files that are ignored by git (#19846)
  • Add .env and .env.* to default ignored content files (#19846)
  • Canonicalization: migrate overflow-ellipsis into text-ellipsis (#19849)
  • Canonicalization: migrate start-fullinset-s-full, start-autoinset-s-auto, start-pxinset-s-px, and start-<number>inset-s-<number> as well as negative versions (#19849)
  • Canonicalization: migrate end-fullinset-e-full, end-autoinset-e-auto, end-pxinset-e-px, and end-<number>inset-e-<number> as well as negative versions (#19849)
  • Canonicalization: move the - sign inside the arbitrary value -left-[9rem]left-[-9rem] (#19858)
  • Canonicalization: move the - sign outside the arbitrary value ml-[calc(-1*var(--width))]-ml-(--width) (#19858)
  • Improve performance when scanning JSONL / NDJSON files (#19862)
  • Support NODE_PATH environment variable in standalone CLI (#19617)
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​tailwindcss/vite since your current version.


Updates @types/bun from 1.3.12 to 1.3.13

Commits

Updates tailwindcss from 4.2.2 to 4.2.4

Release notes

Sourced from tailwindcss's releases.

v4.2.4

Fixed

  • Ensure imports in @import and @plugin still resolve correctly when using Vite aliases in @tailwindcss/vite (#19947)

v4.2.3

Fixed

  • Canonicalization: improve canonicalizations for tracking-* utilities by preferring non-negative utilities (e.g. -tracking-tightertracking-wider) (#19827)
  • Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#19829)
  • Ensure query params in imports are considered unique resources when using @tailwindcss/webpack (#19723)
  • Canonicalization: collapse arbitrary values into shorthand utilities (e.g. px-[1.2rem] py-[1.2rem]p-[1.2rem]) (#19837)
  • Canonicalization: collapse border-{t,b}-* into border-y-*, border-{l,r}-* into border-x-*, and border-{t,r,b,l}-* into border-* (#19842)
  • Canonicalization: collapse scroll-m{t,b}-* into scroll-my-*, scroll-m{l,r}-* into scroll-mx-*, and scroll-m{t,r,b,l}-* into scroll-m-* (#19842)
  • Canonicalization: collapse scroll-p{t,b}-* into scroll-py-*, scroll-p{l,r}-* into scroll-px-*, and scroll-p{t,r,b,l}-* into scroll-p-* (#19842)
  • Canonicalization: collapse overflow-{x,y}-* into overflow-* (#19842)
  • Canonicalization: collapse overscroll-{x,y}-* into overscroll-* (#19842)
  • Read from --placeholder-color instead of --background-color for placeholder-* utilities (#19843)
  • Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#19846)
  • Upgrade: use config.content when migrating from Tailwind CSS v3 to Tailwind CSS v4 (#19846)
  • Upgrade: never migrate files that are ignored by git (#19846)
  • Add .env and .env.* to default ignored content files (#19846)
  • Canonicalization: migrate overflow-ellipsis into text-ellipsis (#19849)
  • Canonicalization: migrate start-fullinset-s-full, start-autoinset-s-auto, start-pxinset-s-px, and start-<number>inset-s-<number> as well as negative versions (#19849)
  • Canonicalization: migrate end-fullinset-e-full, end-autoinset-e-auto, end-pxinset-e-px, and end-<number>inset-e-<number> as well as negative versions (#19849)
  • Canonicalization: move the - sign inside the arbitrary value -left-[9rem]left-[-9rem] (#19858)
  • Canonicalization: move the - sign outside the arbitrary value ml-[calc(-1*var(--width))]-ml-(--width) (#19858)
  • Improve performance when scanning JSONL / NDJSON files (#19862)
  • Support NODE_PATH environment variable in standalone CLI (#19617)
Changelog

Sourced from tailwindcss's changelog.

[4.2.4] - 2026-04-21

Fixed

  • Ensure imports in @import and @plugin still resolve correctly when using Vite aliases in @tailwindcss/vite (#19947)

[4.2.3] - 2026-04-20

Fixed

  • Canonicalization: improve canonicalization for tracking-* utilities by preferring non-negative utilities (e.g. -tracking-tightertracking-wider) (#19827)
  • Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#19829)
  • Ensure query params in imports are considered unique resources when using @tailwindcss/webpack (#19723)
  • Canonicalization: collapse arbitrary values into shorthand utilities (e.g. px-[1.2rem] py-[1.2rem]p-[1.2rem]) (#19837)
  • Canonicalization: collapse border-{t,b}-* into border-y-*, border-{l,r}-* into border-x-*, and border-{t,r,b,l}-* into border-* (#19842)
  • Canonicalization: collapse scroll-m{t,b}-* into scroll-my-*, scroll-m{l,r}-* into scroll-mx-*, and scroll-m{t,r,b,l}-* into scroll-m-* (#19842)
  • Canonicalization: collapse scroll-p{t,b}-* into scroll-py-*, scroll-p{l,r}-* into scroll-px-*, and scroll-p{t,r,b,l}-* into scroll-p-* (#19842)
  • Canonicalization: collapse overflow-{x,y}-* into overflow-* (#19842)
  • Canonicalization: collapse overscroll-{x,y}-* into overscroll-* (#19842)
  • Read from --placeholder-color instead of --background-color for placeholder-* utilities (#19843)
  • Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#19846)
  • Upgrade: use config.content when migrating from Tailwind CSS v3 to Tailwind CSS v4 (#19846)
  • Upgrade: never migrate files that are ignored by git (#19846)
  • Add .env and .env.* to default ignored content files (#19846)
  • Canonicalization: migrate overflow-ellipsis into text-ellipsis (#19849)
  • Canonicalization: migrate start-fullinset-s-full, start-autoinset-s-auto, start-pxinset-s-px, and start-<number>inset-s-<number> as well as negative versions (#19849)
  • Canonicalization: migrate end-fullinset-e-full, end-autoinset-e-auto, end-pxinset-e-px, and end-<number>inset-e-<number> as well as negative versions (#19849)
  • Canonicalization: move the - sign inside the arbitrary value -left-[9rem]left-[-9rem] (#19858)
  • Canonicalization: move the - sign outside the arbitrary value ml-[calc(-1*var(--width))]-ml-(--width) (#19858)
  • Improve performance when scanning JSONL / NDJSON files (#19862)
  • Support NODE_PATH environment variable in standalone CLI (#19617)
Commits

Updates @storybook/react from 10.3.5 to 10.3.6

Release notes

Sourced from @​storybook/react's releases.

v10.3.6

10.3.6

Changelog

Sourced from @​storybook/react's changelog.

10.3.6

Commits

Updates @storybook/react-vite from 10.3.5 to 10.3.6

Release notes

Sourced from @​storybook/react-vite's releases.

v10.3.6

10.3.6

Changelog

Sourced from @​storybook/react-vite's changelog.

10.3.6

Commits

Updates storybook from 10.3.5 to 10.3.6

Release notes

Sourced from storybook's releases.

v10.3.6

10.3.6

Changelog

Sourced from storybook's changelog.

10.3.6

  • ESLint: Update deprecated @​storybook/test reference to storybook/test - #34430, thanks @​venkat22022202!
  • React: Add optional React type peers to packages that publish React-based declarations - #34641, thanks @​copilot-swe-agent!
  • UI: Fix global background + color styles affecting stories - <...

    Description has been truncated

Bumps the development group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.12` | `2.4.14` |
| [@cookielab.io/biome-config](https://github.com/cookielab/biome-configuration) | `1.4.0` | `2.0.0` |
| [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.2.2` | `4.2.4` |
| [@types/bun](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/bun) | `1.3.12` | `1.3.13` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.2.2` | `4.2.4` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `10.3.5` | `10.3.6` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `10.3.5` | `10.3.6` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core) | `10.3.5` | `10.3.6` |



Updates `@biomejs/biome` from 2.4.12 to 2.4.14
- [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.14/packages/@biomejs/biome)

Updates `@cookielab.io/biome-config` from 1.4.0 to 2.0.0
- [Release notes](https://github.com/cookielab/biome-configuration/releases)
- [Changelog](https://github.com/cookielab/biome-configuration/blob/main/CHANGELOG.md)
- [Commits](cookielab/biome-configuration@v1.4.0...v2.0.0)

Updates `@tailwindcss/vite` 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-vite)

Updates `@types/bun` from 1.3.12 to 1.3.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/bun)

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 `@storybook/react` from 10.3.5 to 10.3.6
- [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.6/code/renderers/react)

Updates `@storybook/react-vite` from 10.3.5 to 10.3.6
- [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.6/code/frameworks/react-vite)

Updates `storybook` from 10.3.5 to 10.3.6
- [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.6/code/core)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
- dependency-name: "@cookielab.io/biome-config"
  dependency-version: 2.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development
- dependency-name: "@tailwindcss/vite"
  dependency-version: 4.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
- dependency-name: "@types/bun"
  dependency-version: 1.3.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
- dependency-name: tailwindcss
  dependency-version: 4.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
- dependency-name: "@storybook/react"
  dependency-version: 10.3.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
- dependency-name: "@storybook/react-vite"
  dependency-version: 10.3.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
- dependency-name: storybook
  dependency-version: 10.3.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
...

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 May 3, 2026
@Vrtak-CZ Vrtak-CZ merged commit b25cf81 into main May 3, 2026
@dependabot dependabot Bot deleted the dependabot/bun/development-fce9c2201c branch May 3, 2026 22:16
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.

1 participant