Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

chore(deps): Bump the dev-dependencies group across 1 directory with 19 updates#39

Open
dependabot[bot] wants to merge 1 commit into
main from
dependabot/npm_and_yarn/dev-dependencies-c28bf0e69f
Open

chore(deps): Bump the dev-dependencies group across 1 directory with 19 updates #39
dependabot[bot] wants to merge 1 commit into
main from
dependabot/npm_and_yarn/dev-dependencies-c28bf0e69f

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 8, 2026

Copy link
Copy Markdown
Contributor

Bumps the dev-dependencies group with 19 updates in the / directory:

Package From To
@axe-core/playwright 4.11.2-9a07fd7.0 4.11.3
@biomejs/biome 2.4.6 2.4.16
@playwright/test 1.59.0-alpha-2026年03月07日 1.60.0
@size-limit/preset-small-lib 12.0.1 12.1.0
@vitest/coverage-v8 4.1.0-beta.6 4.1.8
happy-dom 20.8.3 20.10.2
lefthook 2.1.3 2.1.9
size-limit 12.0.1 12.1.0
tinybench 6.0.0 6.0.2
tsdown 0.21.0 0.22.2
tsx 4.21.0 4.22.4
typescript 6.0.1-rc 6.0.3
vitest 4.1.0-beta.6 4.1.8
globby 16.1.1 16.2.0
radix-ui 1.4.4-rc.1766004502650 1.5.0
shiki 4.0.1 4.2.0
@shikijs/twoslash 4.0.1 4.2.0
vite 8.0.0-beta.16 8.0.16
@vitejs/plugin-react 6.0.0-beta.0 6.0.2

Updates @axe-core/playwright from 4.11.2-9a07fd7.0 to 4.11.3

Release notes

Sourced from @​axe-core/playwright's releases.

v4.11.3

What's Changed

New Contributors

Full Changelog: dequelabs/axe-core-npm@v4.11.2...v4.11.3

Release 4.11.2

Bug Fixes

Changelog

Sourced from @​axe-core/playwright's changelog.

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

4.11.2 (2026年04月14日)

Bug Fixes

4.11.1 (2026年01月09日)

Bug Fixes

4.11.0 (2025年10月14日)

Bug Fixes

Features

4.10.2 (2025年05月12日)

... (truncated)

Commits

Updates @biomejs/biome from 2.4.6 to 2.4.16

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.16

2.4.16

Patch Changes

  • #10329 ef764d5 Thanks @​Conaclos! - Fixed an issue where diagnostics showed an incorrect location in Astro files.

  • #10363 50aa415 Thanks @​dyc3! - Fixed HTML formatting for a case where comments could cause the formatter to split up a closing tag, which would cause the resulting HTML to be syntactically invalid.

    Input:

    <span
     ><!-- 1
    --><span>a</span
     ><!-- 2
    --><span>b</span
     ><!-- 3
    --></span>

    Output:

     <span
    	 ><!-- 1
    - --> <span>a</span<!-- 2
    - --> ><span>b</span><!-- 3
    + --><span>a</span><!-- 2
    + --><span>b</span><!-- 3
     --></span
     >
  • #10465 0c718da Thanks @​dfedoryshchev! - Fixed diagnostics emitted by the noUntrustedLicenses rule.

  • #10358 05c2617 Thanks @​dyc3! - Fixed #10356: biome rage --linter now displays rules enabled through linter domains in the enabled rules list.

  • #10300 950247c Thanks @​dyc3! - Fixed #10265: Svelte function bindings such as bind:value={get, set} are now parsed more precisely, so noCommaOperator won't emit false positives for that syntax anymore.

  • #9786 e71f584 Thanks @​MeGaNeKoS! - Fixed #8480: useDestructuring now provides variableDeclarator and assignmentExpression options to control which contexts enforce destructuring, matching ESLint's prefer-destructuring configuration. Both default to {array: true, object: true}. The diagnostic for object destructuring in assignment expressions now instructs users to wrap the assignment in parentheses.

  • #10425 1948b72 Thanks @​sjh9714! - Fixed #10244: The useOptionalChain rule now detects negated guard inequality chains like !foo || foo.bar !== "x".

  • #10442 001f94f Thanks @​ematipico! - Fixed #10411: noMisusedPromises no longer causes a stack overflow when a nested function returns an object with shorthand properties that shadow destructured variables from an outer scope.

  • #10318 9b1577f Thanks @​dyc3! - Added support for formatter.trailingCommas in overrides. This option was previously available in the top-level formatter configuration but missing from formatter overrides.

  • #10319 2e37709 Thanks @​dyc3! - Fixed Vue and Svelte formatting for standalone interpolations in inline elements. Biome now preserves existing newlines in cases like:

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.16

Patch Changes

  • #10329 ef764d5 Thanks @​Conaclos! - Fixed an issue where diagnostics showed an incorrect location in Astro files.

  • #10363 50aa415 Thanks @​dyc3! - Fixed HTML formatting for a case where comments could cause the formatter to split up a closing tag, which would cause the resulting HTML to be syntactically invalid.

    Input:

    <span
     ><!-- 1
    --><span>a</span
     ><!-- 2
    --><span>b</span
     ><!-- 3
    --></span>

    Output:

     <span
    	 ><!-- 1
    - --> <span>a</span<!-- 2
    - --> ><span>b</span><!-- 3
    + --><span>a</span><!-- 2
    + --><span>b</span><!-- 3
     --></span
     >
  • #10465 0c718da Thanks @​dfedoryshchev! - Fixed diagnostics emitted by the noUntrustedLicenses rule.

  • #10358 05c2617 Thanks @​dyc3! - Fixed #10356: biome rage --linter now displays rules enabled through linter domains in the enabled rules list.

  • #10300 950247c Thanks @​dyc3! - Fixed #10265: Svelte function bindings such as bind:value={get, set} are now parsed more precisely, so noCommaOperator won't emit false positives for that syntax anymore.

  • #9786 e71f584 Thanks @​MeGaNeKoS! - Fixed #8480: useDestructuring now provides variableDeclarator and assignmentExpression options to control which contexts enforce destructuring, matching ESLint's prefer-destructuring configuration. Both default to {array: true, object: true}. The diagnostic for object destructuring in assignment expressions now instructs users to wrap the assignment in parentheses.

  • #10425 1948b72 Thanks @​sjh9714! - Fixed #10244: The useOptionalChain rule now detects negated guard inequality chains like !foo || foo.bar !== "x".

  • #10442 001f94f Thanks @​ematipico! - Fixed #10411: noMisusedPromises no longer causes a stack overflow when a nested function returns an object with shorthand properties that shadow destructured variables from an outer scope.

  • #10318 9b1577f Thanks @​dyc3! - Added support for formatter.trailingCommas in overrides. This option was previously available in the top-level formatter configuration but missing from formatter overrides.

  • #10319 2e37709 Thanks @​dyc3! - Fixed Vue and Svelte formatting for standalone interpolations in inline elements. Biome now preserves existing newlines in cases like:

... (truncated)

Commits

Updates @playwright/test from 1.59.0-alpha-2026年03月07日 to 1.60.0

Release notes

Sourced from @​playwright/test's releases.

v1.60.0

🌐 HAR recording on Tracing

tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same content, mode and urlFilter options as recordHar. The returned Disposable makes it easy to scope a recording with await using:

await using har = await context.tracing.startHar('trace.har');
const page = await context.newPage();
await page.goto('https://playwright.dev');
// HAR is finalized when `har` goes out of scope.

🪝 Drop API

New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches dragenter, dragover, and drop with a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:

await page.locator('#dropzone').drop({
 files: { name: 'note.txt', mimeType: 'text/plain', buffer: Buffer.from('hello') },
});
await page.locator('#dropzone').drop({
data: {
'text/plain': 'hello world',
'text/uri-list': 'https://example.com',
},
});

🎯 Aria snapshots

🛑 test.abort()

New test.abort() aborts the currently running test from a fixture, hook, or route handler with an optional message. Use it when you have detected an unrecoverable misuse and want to fail the test right away:

test('does not publish to the shared page', async ({ page }) => {
 await page.route('**/publish', route => {
 test.abort('Tests must not publish to the shared page. Use the `clone` option.');
 return route.abort();
 });
 // ...
});

New APIs

Browser, Context and Page

... (truncated)

Commits

Updates @size-limit/preset-small-lib from 12.0.1 to 12.1.0

Release notes

Sourced from @​size-limit/preset-small-lib's releases.

12.1.0

  • Added disablePlugins option (by @​JPeer264).
  • Updated esbuild.
Changelog

Sourced from @​size-limit/preset-small-lib's changelog.

12.1.0

  • Added disablePlugins option (by @​JPeer264).
  • Updated esbuild.
Commits

Updates @vitest/coverage-v8 from 4.1.0-beta.6 to 4.1.8

Release notes

Sourced from @​vitest/coverage-v8's releases.

v4.1.8

🐞 Bug Fixes

View changes on GitHub

v4.1.7

🐞 Bug Fixes

View changes on GitHub

v4.1.6

🐞 Bug Fixes

🏎 Performance

View changes on GitHub

v4.1.5

🚀 Experimental Features

🐞 Bug Fixes

View changes on GitHub

... (truncated)

Commits

Updates happy-dom from 20.8.3 to 20.10.2

Release notes

Sourced from happy-dom's releases.

v20.10.2

👷‍♂️ Patch fixes

v20.10.0

🎨 Features

v20.9.0

🎨 Features

  • Adds support for event listener properties on Window (e.g. Window.onkeydown) - By @​capricorn86 in task #2131

v20.8.9

👷‍♂️ Patch fixes

  • Fixes issue where cookies from the current origin was being forwarded to the target origin in fetch requests - By @​capricorn86 in task #2117

v20.8.8

👷‍♂️ Patch fixes

  • Fixes issue where export names can be interpolated as executable code in ESM - By @​capricorn86 in task #2113
    • A security advisory (GHSA-6q6h-j7hj-3r64) has been reported that shows a security vulnerability where it may be possible to escape the VM context and get access to process level functionality in unsafe environments using CommonJS. Big thanks to @​tndud042713 for reporting this!

v20.8.7

👷‍♂️ Patch fixes

  • Replace implementing Node.js Console with common IConsole interface to support latest version of Bun - By @​YevheniiKotyrlo in task #1845

v20.8.6

👷‍♂️ Patch fixes

v20.8.5

👷‍♂️ Patch fixes

  • Fixes error thrown when modifying DOM structure in connectedCallback() - By @​capricorn86 in task #2110

v20.8.4

👷‍♂️ Patch fixes

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for happy-dom since your current version.


Updates lefthook from 2.1.3 to 2.1.9

Release notes

Sourced from lefthook's releases.

v2.1.9

Changelog

  • 1d35cbabe1ebaf2a5ed4d2186caa0402de6448e2 chore: add pretty gradient (#1432)
  • 22be6c50e1412c748f3c6b60e9c61cd056dc693b deps: May 2026 (#1415)
  • 1bae568f03dfb88af9185031fa44e9fee285e917 fix: update hooks path after resetting (#1431)

v2.1.8

Changelog

  • 488a5f99a5a496e5837f757f8ce3e6c6d1415792 fix: do not warn if local hooks path is equal to default hooks path (#1421)

v2.1.7

Changelog

  • f415a9d3fce1d4f6af62622cf96c72e04ecf7bd3 chore: go mod tidy
  • cf4ab9ea4580f5aeb0d4b61d4dd169533e5bb0c9 fix: always restore unstaged changes (#1416)
  • 4c0e000d6fe9f35f42efefb9263b0b4cb5dfbd49 fix: apply stage_fixed only if it is safe (#1418)
  • 76aa843ef5ceb6970f61cd2ff28d16dd2ec82272 fix: linter, sacrifice optimization for readability
  • 9d53c36ed9a26d3bf66e341a9650a0ecac9b6a37 fix: separate fallback push branch from pathspecs (#1396)
  • 22c9f773cf93b59005bd244c5b00caab2947a755 fix: try to always restore unstaged changes (#1417)
  • 37d83986d8e6d6bf6792f57e22e7cbb1a9e28064 fix: use contrast colors (#1420)
  • eb1064d0b8c6248627960bea1abf6891db5a21b1 refactor: add new logger without a global state (#1385)

v2.1.6

Changelog

  • bf73ea2f1ea5468c9af7a6f06b5ef8cd43e66040 fix(packaging): do not pipe stdout and stderr (#1382)
  • 04da00697cd8a6241023c1962feb720eeaa62698 fix(windows): normalize lefthook path for sh script (#1383)
  • de9597a1bf456d2cf0fbcb8816858b6e5cf6b609 fix: log full scoped name for skipped jobs (#1291)
  • eb3e70dbbd2442200ec8ff2140a3ee9daa7d9e70 fix: normalize root to always include trailing slash before path replacement (#1381)
  • f90f3f570ef9227ddf345a79cec687dac41a5d31 fix: skip pty allocation when stdout is not a terminal (#1393)

v2.1.5

Changelog

  • afac466157f88b5a5f9d03eb28acc90b095a4b5d chore(golangci-lint): upgrade to 2.11.4 (#1362)
  • f8e73b947e2eefd6950d6a19c20bbde19070809d chore: fix golangci-lint version lookup
  • 4564da343b1497f73f8a82f6104e1b5903f8a081 chore: move golangci-lint version to .tool-versions (#1349)
  • 236a5bd07c650aaa882963d68ab5e5e654a47681 chore: small cleanup (#1370)
  • 5ddf2206dd23e826c5434392e034fa7db523cd3d deps: April 2026 (#1375)
  • e26c719f5a85e8ff35871e9724649714d6f05c13 fix: git repository merge issue (#1372)
  • 3503a3b102c2b41c298e1e7dc6549181508518a6 fix: prevent lefthook run from overwriting global hooks (#1371)
  • f3fc175f6c638fd54ab49b8d7c060898f936c934 fix: use pre-push stdin for push file detection (#1368)

v2.1.4

Changelog

  • 21479f941dcf73bd826cd169088983320fdc31d6 fix: bring back {lefthook_job_name} template (#1347)
  • c586f14d15cbef841c988420da6e21d903859764 fix: separate more commands' non-option args with -- (#1339)
  • 8dcd4aef558c1676d0ac724e220d241a71e6a861 pkg: fix scripts (#1348)
  • 2fac7285db9090f0e88478fdcb50353452250655 pkg: make it easier to read (#1340)
  • 32af36b1b832891df7dfb7411b4c2e273aefc3d7 pkg: refactor packaging (2) (#1346)
  • 5354773b454a8c5e7a916d909782661bc6b1f896 pkg: refactor packaging scripts (#1308)
Changelog

Sourced from lefthook's changelog.

2.1.9 (2026年05月29日)

2.1.8 (2026年05月19日)

  • fix: do not warn if local hooks path is equal to default hooks path (#1421) by @​mrexox

2.1.7 (2026年05月19日)

2.1.6 (2026年04月16日)

2.1.5 (2026年04月06日)

2.1.4 (2026年03月12日)

Commits
  • 75f99ff 2.1.9: fix install with --reset-hooks-path
  • 1d35cba chore: add pretty gradient (#1432)
  • 1bae568 fix: update hooks path after resetting (#1431)
  • 22be6c5 deps: May 2026 (#1415)
  • 9e75b21 2.1.8: reduce warning for core.hooksPath if it matches the default
  • 488a5f9 fix: do not warn if local hooks path is equal to default hooks path (#1421)
  • b5c8310 2.1.7: restore unstaged changes when possible
  • 37d8398 fix: use contrast colors (#1420)
  • 4c0e000 fix: apply stage_fixed only if it is safe (#1418)
  • 22c9f77 fix: try to always restore unstaged changes (#1417)
  • Additional commits viewable in compare view

Updates size-limit from 12.0.1 to 12.1.0

Release notes

Sourced from size-limit's releases.

12.1.0

  • Added disablePlugins option (by @​JPeer264).
  • Updated esbuild.
Changelog

Sourced from size-limit's changelog.

12.1.0

  • Added disablePlugins option (by @​JPeer264).
  • Updated esbuild.
Commits

...19 updates
Bumps the dev-dependencies group with 19 updates in the / directory:
| Package | From | To |
| --- | --- | --- |
| [@axe-core/playwright](https://github.com/dequelabs/axe-core-npm) | `4.11.2-9a07fd7.0` | `4.11.3` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.6` | `2.4.16` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.59.0-alpha-2026年03月07日` | `1.60.0` |
| [@size-limit/preset-small-lib](https://github.com/ai/size-limit) | `12.0.1` | `12.1.0` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.0-beta.6` | `4.1.8` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `20.8.3` | `20.10.2` |
| [lefthook](https://github.com/evilmartians/lefthook) | `2.1.3` | `2.1.9` |
| [size-limit](https://github.com/ai/size-limit) | `12.0.1` | `12.1.0` |
| [tinybench](https://github.com/tinylibs/tinybench) | `6.0.0` | `6.0.2` |
| [tsdown](https://github.com/rolldown/tsdown) | `0.21.0` | `0.22.2` |
| [tsx](https://github.com/privatenumber/tsx) | `4.21.0` | `4.22.4` |
| [typescript](https://github.com/microsoft/TypeScript) | `6.0.1-rc` | `6.0.3` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.0-beta.6` | `4.1.8` |
| [globby](https://github.com/sindresorhus/globby) | `16.1.1` | `16.2.0` |
| [radix-ui](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/radix-ui) | `1.4.4-rc.1766004502650` | `1.5.0` |
| [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki) | `4.0.1` | `4.2.0` |
| [@shikijs/twoslash](https://github.com/shikijs/shiki/tree/HEAD/packages/twoslash) | `4.0.1` | `4.2.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.0-beta.16` | `8.0.16` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `6.0.0-beta.0` | `6.0.2` |
Updates `@axe-core/playwright` from 4.11.2-9a07fd7.0 to 4.11.3
- [Release notes](https://github.com/dequelabs/axe-core-npm/releases)
- [Changelog](https://github.com/dequelabs/axe-core-npm/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/dequelabs/axe-core-npm/commits/v4.11.3)
Updates `@biomejs/biome` from 2.4.6 to 2.4.16
- [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.16/packages/@biomejs/biome)
Updates `@playwright/test` from 1.59.0-alpha-2026年03月07日 to 1.60.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](https://github.com/microsoft/playwright/commits/v1.60.0)
Updates `@size-limit/preset-small-lib` from 12.0.1 to 12.1.0
- [Release notes](https://github.com/ai/size-limit/releases)
- [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md)
- [Commits](ai/size-limit@12.0.1...12.1.0)
Updates `@vitest/coverage-v8` from 4.1.0-beta.6 to 4.1.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.8/packages/coverage-v8)
Updates `happy-dom` from 20.8.3 to 20.10.2
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v20.8.3...v20.10.2)
Updates `lefthook` from 2.1.3 to 2.1.9
- [Release notes](https://github.com/evilmartians/lefthook/releases)
- [Changelog](https://github.com/evilmartians/lefthook/blob/master/CHANGELOG.md)
- [Commits](evilmartians/lefthook@v2.1.3...v2.1.9)
Updates `size-limit` from 12.0.1 to 12.1.0
- [Release notes](https://github.com/ai/size-limit/releases)
- [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md)
- [Commits](ai/size-limit@12.0.1...12.1.0)
Updates `tinybench` from 6.0.0 to 6.0.2
- [Release notes](https://github.com/tinylibs/tinybench/releases)
- [Commits](tinylibs/tinybench@v6.0.0...v6.0.2)
Updates `tsdown` from 0.21.0 to 0.22.2
- [Release notes](https://github.com/rolldown/tsdown/releases)
- [Commits](rolldown/tsdown@v0.21.0...v0.22.2)
Updates `tsx` from 4.21.0 to 4.22.4
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.21.0...v4.22.4)
Updates `typescript` from 6.0.1-rc to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](https://github.com/microsoft/TypeScript/commits/v6.0.3)
Updates `vitest` from 4.1.0-beta.6 to 4.1.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.8/packages/vitest)
Updates `globby` from 16.1.1 to 16.2.0
- [Release notes](https://github.com/sindresorhus/globby/releases)
- [Commits](sindresorhus/globby@v16.1.1...v16.2.0)
Updates `radix-ui` from 1.4.4-rc.1766004502650 to 1.5.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/radix-ui/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/radix-ui)
Updates `shiki` from 4.0.1 to 4.2.0
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v4.2.0/packages/shiki)
Updates `@shikijs/twoslash` from 4.0.1 to 4.2.0
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v4.2.0/packages/twoslash)
Updates `vite` from 8.0.0-beta.16 to 8.0.16
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.0.16/packages/vite)
Updates `@vitejs/plugin-react` from 6.0.0-beta.0 to 6.0.2
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@6.0.2/packages/plugin-react)
---
updated-dependencies:
- dependency-name: "@axe-core/playwright"
 dependency-version: 4.11.3
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@biomejs/biome"
 dependency-version: 2.4.16
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@playwright/test"
 dependency-version: 1.60.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@size-limit/preset-small-lib"
 dependency-version: 12.1.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@vitest/coverage-v8"
 dependency-version: 4.1.8
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: happy-dom
 dependency-version: 20.10.2
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: lefthook
 dependency-version: 2.1.9
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: size-limit
 dependency-version: 12.1.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: tinybench
 dependency-version: 6.0.2
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: tsdown
 dependency-version: 0.22.2
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: tsx
 dependency-version: 4.22.4
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: typescript
 dependency-version: 6.0.3
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: vitest
 dependency-version: 4.1.8
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: globby
 dependency-version: 16.2.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: radix-ui
 dependency-version: 1.5.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: shiki
 dependency-version: 4.2.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@shikijs/twoslash"
 dependency-version: 4.2.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: vite
 dependency-version: 8.0.16
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@vitejs/plugin-react"
 dependency-version: 6.0.2
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Jun 8, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

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

Reviewers

No reviews

Assignees

No one assigned

Labels

None yet

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

0 participants

AltStyle によって変換されたページ (->オリジナル) /