Skip to content

Bump the dev-tooling group across 1 directory with 14 updates#61

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/dev-tooling-89a4bf8790
Closed

Bump the dev-tooling group across 1 directory with 14 updates#61
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/dev-tooling-89a4bf8790

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 9, 2026

Bumps the dev-tooling group with 14 updates in the / directory:

Package From To
@playwright/test 1.58.2 1.59.1
knip 6.0.0 6.3.1
@microsoft/api-extractor 7.57.7 7.58.2
@storybook/react 10.3.1 10.3.5
@storybook/react-vite 10.3.1 10.3.5
eslint 10.1.0 10.2.0
jsdom 29.0.1 29.0.2
react 19.2.4 19.2.5
react-dom 19.2.4 19.2.5
storybook 10.3.1 10.3.5
typescript 5.9.3 6.0.2
typescript-eslint 8.57.1 8.58.1
vite 8.0.5 8.0.8
vitest 4.1.0 4.1.4

Updates @playwright/test from 1.58.2 to 1.59.1

Release notes

Sourced from @​playwright/test's releases.

v1.59.1

Bug Fixes

  • [Windows] Reverted hiding console window when spawning browser processes, which caused regressions including broken codegen, --ui and show commands (#39990)

v1.59.0

🎬 Screencast

New page.screencast API provides a unified interface for capturing page content with:

  • Screencast recordings
  • Action annotations
  • Visual overlays
  • Real-time frame capture
  • Agentic video receipts

Screencast recording — record video with precise start/stop control, as an alternative to the recordVideo option:

await page.screencast.start({ path: 'video.webm' });
// ... perform actions ...
await page.screencast.stop();

Action annotations — enable built-in visual annotations that highlight interacted elements and display action titles during recording:

await page.screencast.showActions({ position: 'top-right' });

screencast.showActions() accepts position ('top-left', 'top', 'top-right', 'bottom-left', 'bottom', 'bottom-right'), duration (ms per annotation), and fontSize (px). Returns a disposable to stop showing actions.

Action annotations can also be enabled in test fixtures via the video option:

// playwright.config.ts
export default defineConfig({
  use: {
    video: {
      mode: 'on',
      show: {
        actions: { position: 'top-left' },
        test: { position: 'top-right' },
      },
</tr></table> 

... (truncated)

Commits
  • d466ac5 chore: mark v1.59.1 (#40005)
  • 530e7e5 cherry-pick(#4004): fix(cli): kill-all should kill dashboard
  • 9aa216c cherry-pick(#39994): Revert "fix(windows): hide console window when spawning ...
  • 01b2b15 cherry-pick(#39980): chore: more release notes fixes
  • a5cb6c9 cherry-pick(#39972): chore: expose browser.bind and browser.unbind APIs
  • 99a17b5 cherry-pick(#39975): chore: support opening .trace files via .link indirection
  • 43607c3 cherry-pick(#39974): chore(webkit): update Safari user-agent version to 26.4
  • 62cabe1 cherry-pick(#39969): chore(npm): include all *.md from lib (#39970)
  • 0c65a75 cherry-pick(#39968): chore: screencast.showActions api
  • f04155b cherry-pick(#39958): chore: release notes for langs v1.59
  • Additional commits viewable in compare view

Updates knip from 6.0.0 to 6.3.1

Release notes

Sourced from knip's releases.

Release 6.3.1

  • Fix peer dependency resolution (#1645) (0a6e93d16f89bde270a5458c0e76e1c6a996012f) - thanks @​controversial!
  • Support absolute file paths in react-router routes (#1659) (97bb283e31eb72da8c60fcede607b22da2929103) - thanks @​mpalmer685!
  • Track namespace imports used as object property values (resolve #1669) (c4d6b28df5955abbe9dde40d245ceb5a6e0bc669)
  • Split plugins/util smoke globs to fit Windows cmd.exe limit (33ef87d15770d0ee9dc248a640538ce2f0d75a46)

Release 6.3.0

  • Re-gen sponsorships chart (83ee4895f36d934bf9f2efaaaf3e141c33c889f8)
  • Add testimonial (be16c54d379698899e3f10646bb23b280024b989)
  • Add deferred resolve entries as direct entry paths to avoid ws exclusion (91a183539fb63528f900b187328c3bba1b161e88)
  • Add rolldown plugin (resolve #1661) (44bfd6273375384dc0b01b2cf673b6ad1b6783f0)
  • Housekeep plugins a bit (dc6986821bde185185b730e119d2c528048f9976)
  • Improve module.register handling (b9e36ea42d0b2b35d6080aafc94b292a3d7fd711)
  • Housekeep release script (f81bd0f5f6630c2cac9934c3b96ace0d42bd2353)

Release 6.2.0

  • Support tilde-prefixed scoped package names (e.g. @~private/pkg) (#1656) (947893d9dd9135fb8878e30de65841d4dff17f0c) - thanks @​MatissJanis!
  • fix(storybook): mark vitest coverage deps as optional when addon-vitest is used (#1654) (06e88d42d7c1f89e18cba3d09c12ef080cb231a4) - thanks @​brick-pixel!
  • Deduplicate module graph queue to avoid redundant file processing (#1657) (e34d3b0dd4cc97d16a9c70c7bd436372a3e3081d) - thanks @​MatissJanis!
  • Export KnipConfiguration type for dynamic config use cases (resolve #1634) (4a64e0e833511859b7703ac36e08a178e663192d)
  • Release knip@6.2.0 (d8c016164fda981209186c205f86329b522e76ee)

Release 6.1.1

  • Handle absolute Vitest test roots (#1650) (898a412d369edd6ee967485c2df95d0c6ae87a18) - thanks @​filipw01!
  • Fix reference types regex to allow extra attributes (resolve #1649) (1d5f9438e2e4e0d01558f41608a450093afa60e5)
  • Update docs (close #1614, close #1615) (f1ac52964ff7aa9c3454e085a2c582e00ff69e4b)
  • Release knip@6.1.1 (fcfdabe8bd956b4ed71126a75b72e3e304e6518b)

Release 6.1.0

  • Add knip.nodeRuntimePath setting (resolve #1643) (65e943ccde55ea54c1cd749e577b4bcb4f97e1b4)
  • Swap Astro sharp detection to match default behavior (#1559) (84968bb713a0d8c478b8b329323a43da6bf0833e)
  • feat: stencil plugin (#1644) (d5d20e5e21d64590c0e735c6bc840295cda665cd) - thanks @​johnjenkins!
  • Enable metro plugin when expo is installed (#1600) (14bc9d7744962d740e2bef1ead3e3f444b2cca5c) - thanks @​DaniFoldi!
  • Resolve jsPlugins dependencies in oxlint plugin (#1576) (e11c962ea55d7afa89ae812686565383b852a50a) - thanks @​nikolailehbrink!
  • Wrap up oxlint jsPlugins support (209a9f78784153d14c2ef0ae2c987926d35de4b7)
  • Update dependencies (close #1646) (869020fc2ed765a52cc242810e0f20a137047b26)
  • Fix config hint filePath edge case (e79c302f9cfd33957485327688e5fcbc25848eec)
  • Rename oxlint config file in fixtures (563020402f35281f2c57672aff12a09aebb363fe)

Release 6.0.6

  • Suppress issues initially to not overwhelm agent in mcp server (7793962c5)
  • Auto-format (346247a70)
  • Fix false positive unused deps when run from workspace dir (resolve #1642) (95f443195)
  • Move from convertPathsToAliascompilePathMappings (resolve #1641) (ccc62d684)

Release 6.0.5

  • Fix up ecosystem pipeline, add sanity (a338b211d4d8b4634dce4de51b9c7ef8d3cd1f05)
  • Fix broken links in Writing a Plugin docs (#1640) (963f20627a6d5d683a6e46df0162795c054dbef9) - thanks @​skoeva!
  • Minor alignment edits to MCP texts.js (714089f09309be00ebef0a91ca903669856acd0d)
  • Merge JSDoc tags across function overload signatures (resolve #1639) (6269ec34ef6fe75be1d69c4f67e8fc43fabf83db)

... (truncated)

Commits
  • 4fc6ced Release knip@6.3.1
  • 33ef87d Split plugins/util smoke globs to fit Windows cmd.exe limit
  • c4d6b28 Track namespace imports used as object property values (resolve #1669)
  • 97bb283 Support absolute file paths in react-router routes (#1659)
  • 0a6e93d Fix peer dependency resolution (#1645)
  • 4b53308 Release knip@6.3.0
  • f81bd0f Housekeep release script
  • b9e36ea Improve module.register handling
  • dc69868 Housekeep plugins a bit
  • 44bfd62 Add rolldown plugin (resolve #1661)
  • Additional commits viewable in compare view

Updates @microsoft/api-extractor from 7.57.7 to 7.58.2

Changelog

Sourced from @​microsoft/api-extractor's changelog.

7.58.2

Thu, 09 Apr 2026 00:15:07 GMT

Version update only

7.58.1

Sat, 04 Apr 2026 00:14:00 GMT

Patches

7.58.0

Wed, 01 Apr 2026 15:13:38 GMT

Minor changes

  • Upgrade the bundled compiler engine to TypeScript 5.9.3

7.57.8

Tue, 31 Mar 2026 15:14:14 GMT

Version update only

Commits

Updates @storybook/react from 10.3.1 to 10.3.5

Release notes

Sourced from @​storybook/react's releases.

v10.3.5

10.3.5

[!NOTE] Version >=0.5.0 of @storybook/addon-mcp enables component manifests again. If you're upgrading Storybook from version >= 10.3.0 to >= 10.3.5 and are using the MCP addon, you should also upgrade @storybook/addon-mcp to keep the docs toolset in the MCP server.

v10.3.4

10.3.4

v10.3.3

10.3.3

v10.3.2

10.3.2

Changelog

Sourced from @​storybook/react's changelog.

10.3.5

[!NOTE] Version >=0.5.0 of @storybook/addon-mcp enables component manifests again. If you're upgrading Storybook from version >= 10.3.0 to >= 10.3.5 and are using the MCP addon, you should also upgrade @storybook/addon-mcp to keep the docs toolset in the MCP server.

10.3.4

10.3.3

10.3.2

Commits
  • e486d38 Bump version from "10.3.4" to "10.3.5" [skip ci]
  • 4eff9cd Bump version from "10.3.3" to "10.3.4" [skip ci]
  • 4fb52a2 Merge pull request #34393 from mixelburg/fix/docgen-resolver-tsx-fallback
  • b0acfb4 Bump version from "10.3.2" to "10.3.3" [skip ci]
  • 308656f Bump version from "10.3.1" to "10.3.2" [skip ci]
  • See full diff in compare view

Updates @storybook/react-vite from 10.3.1 to 10.3.5

Release notes

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

v10.3.5

10.3.5

[!NOTE] Version >=0.5.0 of @storybook/addon-mcp enables component manifests again. If you're upgrading Storybook from version >= 10.3.0 to >= 10.3.5 and are using the MCP addon, you should also upgrade @storybook/addon-mcp to keep the docs toolset in the MCP server.

v10.3.4

10.3.4

v10.3.3

10.3.3

v10.3.2

10.3.2

Changelog

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

10.3.5

[!NOTE] Version >=0.5.0 of @storybook/addon-mcp enables component manifests again. If you're upgrading Storybook from version >= 10.3.0 to >= 10.3.5 and are using the MCP addon, you should also upgrade @storybook/addon-mcp to keep the docs toolset in the MCP server.

10.3.4

10.3.3

10.3.2

Commits
  • e486d38 Bump version from "10.3.4" to "10.3.5" [skip ci]
  • 4eff9cd Bump version from "10.3.3" to "10.3.4" [skip ci]
  • 4fb52a2 Merge pull request #34393 from mixelburg/fix/docgen-resolver-tsx-fallback
  • 756f6e3 Merge pull request #34335 from beeswhacks/upgrade-vite-plugin-react-docgen-ty...
  • b0acfb4 Bump version from "10.3.2" to "10.3.3" [skip ci]
  • 308656f Bump version from "10.3.1" to "10.3.2" [skip ci]
  • See full diff in compare view

Updates eslint from 10.1.0 to 10.2.0

Release notes

Sourced from eslint's releases.

v10.2.0

Features

  • 586ec2f feat: Add meta.languages support to rules (#20571) (Copilot)
  • 14207de feat: add Temporal to no-obj-calls (#20675) (Pixel998)
  • bbb2c93 feat: add Temporal to ES2026 globals (#20672) (Pixel998)

Bug Fixes

  • 542cb3e fix: update first-party dependencies (#20714) (Francesco Trotta)

Documentation

  • a2af743 docs: add language to configuration objects (#20712) (Francesco Trotta)
  • 845f23f docs: Update README (GitHub Actions Bot)
  • 5fbcf59 docs: remove sourceType from ts playground link (#20477) (Tanuj Kanti)
  • 8702a47 docs: Update README (GitHub Actions Bot)
  • ddeaded docs: Update README (GitHub Actions Bot)
  • 2b44966 docs: add Major Releases section to Manage Releases (#20269) (Milos Djermanovic)
  • eab65c7 docs: update eslint versions in examples (#20664) (루밀LuMir)
  • 3e4a299 docs: update ESM Dependencies policies with note for own-usage packages (#20660) (Milos Djermanovic)

Chores

  • 8120e30 refactor: extract no unmodified loop condition (#20679) (kuldeep kumar)
  • 46e8469 chore: update dependency markdownlint-cli2 to ^0.22.0 (#20697) (renovate[bot])
  • 01ed3aa test: add unit tests for unicode utilities (#20622) (Manish chaudhary)
  • 811f493 ci: remove --legacy-peer-deps from types integration tests (#20667) (Milos Djermanovic)
  • 6b86fcf chore: update dependency npm-run-all2 to v8 (#20663) (renovate[bot])
  • 632c4f8 chore: add prettier update commit to .git-blame-ignore-revs (#20662) (루밀LuMir)
  • b0b0f21 chore: update dependency eslint-plugin-regexp to ^3.1.0 (#20659) (Milos Djermanovic)
  • 228a2dd chore: update dependency eslint-plugin-eslint-plugin to ^7.3.2 (#20661) (Milos Djermanovic)
  • 3ab4d7e test: Add tests for eslintrc-style keys (#20645) (kuldeep kumar)
Commits

Updates jsdom from 29.0.1 to 29.0.2

Release notes

Sourced from jsdom's releases.

v29.0.2

  • Significantly improved and sped up getComputedStyle(). Computed value rules are now applied across a broader set of properties, and include fixes related to inheritance, defaulting keywords, custom properties, and color-related values such as currentcolor and system colors. (@​asamuzaK)
  • Fixed CSS 'background' and 'border' shorthand parsing. (@​asamuzaK)
Commits
  • 2a1e2cd 29.0.2
  • 4097d66 Resolve computed CSS values lazily in CSSStyleDeclaration
  • cf5523f Add more test cases for nested color-mix with currentColor
  • b33b616 Add test that getComputedStyle() works with !important
  • 6bf559c Add test for custom property inheritance in computed styles
  • 6817657 Fix border shorthand handling
  • 470f5c5 Consolidate color helpers
  • 3db53cb Fix background shorthand handlers
  • 678e840 Remove some longhand property files
  • d526a07 Add regression test for getComputedStyle() liveness
  • See full diff in compare view

Updates react from 19.2.4 to 19.2.5

Release notes

Sourced from react's releases.

19.2.5 (April 8th, 2026)

React Server Components

Commits

Updates react-dom from 19.2.4 to 19.2.5

Release notes

Sourced from react-dom's releases.

19.2.5 (April 8th, 2026)

React Server Components

Commits

Updates storybook from 10.3.1 to 10.3.5

Release notes

Sourced from storybook's releases.

v10.3.5

10.3.5

[!NOTE] Version >=0.5.0 of @storybook/addon-mcp enables component manifests again. If you're upgrading Storybook from version >= 10.3.0 to >= 10.3.5 and are using the MCP addon, you should also upgrade @storybook/addon-mcp to keep the docs toolset in the MCP server.

v10.3.4

10.3.4

v10.3.3

10.3.3

v10.3.2

10.3.2

Changelog

Sourced from storybook's changelog.

10.3.5

[!NOTE] Version >=0.5.0 of @storybook/addon-mcp enables component manifests again. If you're upgrading Storybook from version >= 10.3.0 to >= 10.3.5 and are using the MCP addon, you should also upgrade @storybook/addon-mcp to keep the docs toolset in the MCP server.

10.3.4

10.3.3

10.3.2

Commits
  • e486d38 Bump version from "10.3.4" to "10.3.5" [skip ci]
  • 0b3ac65 Merge pull request #34408 from storybookjs/yann/disable-component-manifest-de...
  • ee73b65 Merge pull request #34455 from seojcarlos/fix/remove-duplicate-words
  • 4eff9cd Bump version from "10.3.3" to "10.3.4" [skip ci]
  • 21d37fd Merge pull request #34224 from storybookjs/chore/removeprettierrc
  • 4eb227b Build: Move prettier to oxfmt
  • ff9d121 Merge pull request #34316 from storybookjs/jeppe/fix-error-reports-on-init
  • 5bc8686 Merge pull request #34281 from storybookjs/fix-stackblitz-websocket
  • b0acfb4 Bump version from "10.3.2" to "10.3.3" [skip ci]
  • 6a398c5 Merge pull request #34193 from storybookjs/valentin/streamline-config-validat...
  • Additional commits viewable in compare view

Updates typescript from 5.9.3 to 6.0.2

Release notes

Sourced from typescript's releases.

TypeScript 6.0

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits

Updates typescript-eslint from 8.57.1 to 8.58.1

Release notes

Sourced from typescript-eslint's releases.

v8.58.1

8.58.1 (2026-04-08)

🩹 Fixes

  • eslint-plugin: [no-unused-vars] fix false negative for type predicate parameter (#12004)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.58.0

8.58.0 (2026-03-30)

🚀 Features

  • support TypeScript 6 (#12124)

🩹 Fixes

  • eslint-plugin: crash in no-unnecessary-type-arguments (#12163)
  • eslint-plugin: [no-extraneous-class] handle index signatures (#12142)
  • eslint-plugin: [prefer-regexp-exec] avoid fixing unknown RegExp flags (#12161)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.57.2

8.57.2 (2026-03-23)

🩹 Fixes

  • eslint...

    Description has been truncated

Bumps the dev-tooling group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.58.2` | `1.59.1` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `6.0.0` | `6.3.1` |
| [@microsoft/api-extractor](https://github.com/microsoft/rushstack/tree/HEAD/apps/api-extractor) | `7.57.7` | `7.58.2` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `10.3.1` | `10.3.5` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `10.3.1` | `10.3.5` |
| [eslint](https://github.com/eslint/eslint) | `10.1.0` | `10.2.0` |
| [jsdom](https://github.com/jsdom/jsdom) | `29.0.1` | `29.0.2` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.4` | `19.2.5` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.4` | `19.2.5` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core) | `10.3.1` | `10.3.5` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.2` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.57.1` | `8.58.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.5` | `8.0.8` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.0` | `4.1.4` |



Updates `@playwright/test` from 1.58.2 to 1.59.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.58.2...v1.59.1)

Updates `knip` from 6.0.0 to 6.3.1
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Commits](https://github.com/webpro-nl/knip/commits/knip@6.3.1/packages/knip)

Updates `@microsoft/api-extractor` from 7.57.7 to 7.58.2
- [Changelog](https://github.com/microsoft/rushstack/blob/main/apps/api-extractor/CHANGELOG.md)
- [Commits](https://github.com/microsoft/rushstack/commits/@microsoft/api-extractor_v7.58.2/apps/api-extractor)

Updates `@storybook/react` from 10.3.1 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/renderers/react)

Updates `@storybook/react-vite` from 10.3.1 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 `eslint` from 10.1.0 to 10.2.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.1.0...v10.2.0)

Updates `jsdom` from 29.0.1 to 29.0.2
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Commits](jsdom/jsdom@v29.0.1...v29.0.2)

Updates `react` from 19.2.4 to 19.2.5
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react)

Updates `react-dom` from 19.2.4 to 19.2.5
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react-dom)

Updates `storybook` from 10.3.1 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 `typescript` from 5.9.3 to 6.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.2)

Updates `typescript-eslint` from 8.57.1 to 8.58.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.58.1/packages/typescript-eslint)

Updates `vite` from 8.0.5 to 8.0.8
- [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.8/packages/vite)

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

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-version: 1.59.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-tooling
- dependency-name: knip
  dependency-version: 6.3.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-tooling
- dependency-name: "@microsoft/api-extractor"
  dependency-version: 7.58.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-tooling
- dependency-name: "@storybook/react"
  dependency-version: 10.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
- dependency-name: "@storybook/react-vite"
  dependency-version: 10.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
- dependency-name: eslint
  dependency-version: 10.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-tooling
- dependency-name: jsdom
  dependency-version: 29.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
- dependency-name: react-dom
  dependency-version: 19.2.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
- dependency-name: storybook
  dependency-version: 10.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
- dependency-name: typescript
  dependency-version: 6.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-tooling
- dependency-name: typescript-eslint
  dependency-version: 8.58.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-tooling
- dependency-name: vite
  dependency-version: 8.0.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
- dependency-name: vitest
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
...

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 9, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 10, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 10, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dev-tooling-89a4bf8790 branch April 10, 2026 17:20
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