Skip to content

Bump the dev-tooling group across 1 directory with 11 updates#54

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

Bump the dev-tooling group across 1 directory with 11 updates#54
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/dev-tooling-2d570c9c28

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

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

Package From To
@playwright/test 1.58.2 1.59.1
knip 6.0.0 6.3.0
@microsoft/api-extractor 7.57.7 7.58.0
@storybook/react 10.3.1 10.3.4
@storybook/react-vite 10.3.1 10.3.4
esbuild 0.27.4 0.28.0
storybook 10.3.1 10.3.4
typescript 5.9.3 6.0.2
typescript-eslint 8.57.1 8.58.0
vite 8.0.1 8.0.3
vitest 4.1.0 4.1.2

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.0

Release notes

Sourced from knip's releases.

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)
  • Housekeep tag matching (b15bc7e245e972b29496035090a1a35782a4d1ed)
  • Housekeep reference type matching (d9c8731c7e57142a738bc37db0db75616944f832)
  • fix(nx): fall back to workspace cwd when run-commands target has no cwd (#1638) (cf2dc7db8dc7105cfc3aef2a0d17255cb288d5b2) - thanks @​liorp!

Release 6.0.4

  • Defer ns member ref resolution to post-walk batch pass (resolve #1633) (304504fec11ad5bb94e1a0ea0678eaee876d56ab)

... (truncated)

Commits
  • 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)
  • 91a1835 Add deferred resolve entries as direct entry paths to avoid ws exclusion
  • d8c0161 Release knip@6.2.0
  • 4a64e0e Export KnipConfiguration type for dynamic config use cases (resolve #1634)
  • e34d3b0 Deduplicate module graph queue to avoid redundant file processing (#1657)
  • 06e88d4 fix(storybook): mark vitest coverage deps as optional when addon-vitest is us...
  • Additional commits viewable in compare view

Updates @microsoft/api-extractor from 7.57.7 to 7.58.0

Changelog

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

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.4

Release notes

Sourced from @​storybook/react's releases.

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.4

10.3.3

10.3.2

Commits
  • 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.4

Release notes

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

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.4

10.3.3

10.3.2

Commits
  • 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 esbuild from 0.27.4 to 0.28.0

Release notes

Sourced from esbuild's releases.

v0.28.0

  • Add support for with { type: 'text' } imports (#4435)

    The import text proposal has reached stage 3 in the TC39 process, which means that it's recommended for implementation. It has also already been implemented by Deno and Bun. So with this release, esbuild also adds support for it. This behaves exactly the same as esbuild's existing text loader. Here's an example:

    import string from './example.txt' with { type: 'text' }
    console.log(string)
  • Add integrity checks to fallback download path (#4343)

    Installing esbuild via npm is somewhat complicated with several different edge cases (see esbuild's documentation for details). If the regular installation of esbuild's platform-specific package fails, esbuild's install script attempts to download the platform-specific package itself (first with the npm command, and then with a HTTP request to registry.npmjs.org as a last resort).

    This last resort path previously didn't have any integrity checks. With this release, esbuild will now verify that the hash of the downloaded binary matches the expected hash for the current release. This means the hashes for all of esbuild's platform-specific binary packages will now be embedded in the top-level esbuild package. Hopefully this should work without any problems. But just in case, this change is being done as a breaking change release.

  • Update the Go compiler from 1.25.7 to 1.26.1

    This upgrade should not affect anything. However, there have been some significant internal changes to the Go compiler, so esbuild could potentially behave differently in certain edge cases:

    • It now uses the new garbage collector that comes with Go 1.26.
    • The Go compiler is now more aggressive with allocating memory on the stack.
    • The executable format that the Go linker uses has undergone several changes.
    • The WebAssembly build now unconditionally makes use of the sign extension and non-trapping floating-point to integer conversion instructions.

    You can read the Go 1.26 release notes for more information.

v0.27.7

  • Fix lowering of define semantics for TypeScript parameter properties (#4421)

    The previous release incorrectly generated class fields for TypeScript parameter properties even when the configured target environment does not support class fields. With this release, the generated class fields will now be correctly lowered in this case:

    // Original code
    class Foo {
      constructor(public x = 1) {}
      y = 2
    }
    // Old output (with --loader=ts --target=es2021)
    class Foo {
    constructor(x = 1) {
    this.x = x;
    __publicField(this, "y", 2);
    }
    x;
    }
    // New output (with --loader=ts --target=es2021)
    class Foo {

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.28.0

  • Add support for with { type: 'text' } imports (#4435)

    The import text proposal has reached stage 3 in the TC39 process, which means that it's recommended for implementation. It has also already been implemented by Deno and Bun. So with this release, esbuild also adds support for it. This behaves exactly the same as esbuild's existing text loader. Here's an example:

    import string from './example.txt' with { type: 'text' }
    console.log(string)
  • Add integrity checks to fallback download path (#4343)

    Installing esbuild via npm is somewhat complicated with several different edge cases (see esbuild's documentation for details). If the regular installation of esbuild's platform-specific package fails, esbuild's install script attempts to download the platform-specific package itself (first with the npm command, and then with a HTTP request to registry.npmjs.org as a last resort).

    This last resort path previously didn't have any integrity checks. With this release, esbuild will now verify that the hash of the downloaded binary matches the expected hash for the current release. This means the hashes for all of esbuild's platform-specific binary packages will now be embedded in the top-level esbuild package. Hopefully this should work without any problems. But just in case, this change is being done as a breaking change release.

  • Update the Go compiler from 1.25.7 to 1.26.1

    This upgrade should not affect anything. However, there have been some significant internal changes to the Go compiler, so esbuild could potentially behave differently in certain edge cases:

    • It now uses the new garbage collector that comes with Go 1.26.
    • The Go compiler is now more aggressive with allocating memory on the stack.
    • The executable format that the Go linker uses has undergone several changes.
    • The WebAssembly build now unconditionally makes use of the sign extension and non-trapping floating-point to integer conversion instructions.

    You can read the Go 1.26 release notes for more information.

0.27.7

  • Fix lowering of define semantics for TypeScript parameter properties (#4421)

    The previous release incorrectly generated class fields for TypeScript parameter properties even when the configured target environment does not support class fields. With this release, the generated class fields will now be correctly lowered in this case:

    // Original code
    class Foo {
      constructor(public x = 1) {}
      y = 2
    }
    // Old output (with --loader=ts --target=es2021)
    class Foo {
    constructor(x = 1) {
    this.x = x;
    __publicField(this, "y", 2);
    }
    x;
    }

... (truncated)

Commits
  • 6a794df publish 0.28.0 to npm
  • 64ee0ea fix #4435: support with { type: text } imports
  • ef65aee fix sort order in snapshots_packagejson.txt
  • 1a26a8e try to fix test-old-ts, also shuffle CI tasks
  • 556ce6c use '' instead of null to omit build hashes
  • 8e675a8 ci: allow missing binary hashes for tests
  • 7067763 Reapply "update go 1.25.7 => 1.26.1"
  • 39473a9 fix #4343: integrity check for binary download
  • 2025c9f publish 0.27.7 to npm
  • c6b586e fix typo in Makefile for @esbuild/win32-x64
  • Additional commits viewable in compare view

Updates storybook from 10.3.1 to 10.3.4

Release notes

Sourced from storybook's releases.

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.4

10.3.3

10.3.2

Commits
  • 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...
  • 308656f Bump version from "10.3.1" to "10.3.2" [skip ci]
  • See full diff 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.0

Release notes

Sourced from typescript-eslint's releases.

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-plugin: [prefer-optional-chain] remove dangling closing parenthesis (#11865)
  • eslint-plugin: [array-type] ignore Array and ReadonlyArray without type arguments (#11971)
  • eslint-plugin: [no-restricted-types] flag banned generics in extends or implements (#12120)
  • eslint-plugin: [no-unsafe-return] false positive on unwrapping generic (#12125)
  • eslint-plugin: [no-unsafe-return] false positive on unwrapping generic (#12125)
  • eslint-plugin: [no-useless-default-assignment] skip reporting false positives for unresolved type parameters (#12127)
  • eslint-plugin: [prefer-readonly-parameter-types] preserve type alias infomation (#11954)
  • typescript-estree: skip createIsolatedProgram fallback for projectService (#12066, #12065)

❤️ Thank You

See GitHub Releases for more information.

... (truncated)

Changelog

Sourced from typescript-eslint's changelog.

8.58.0 (2026-03-30)

🚀 Features

  • support TypeScript 6 (#12124)

❤️ Thank You

See GitHub Releases for more information.

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

8.57.2 (2026-03-23)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

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

Commits

Updates vite from 8.0.1 to 8.0.3

Release notes

Sourced from vite's releases.

create-vite@8.0.3

Please refer to CHANGELOG.md for details.

v8.0.3

Please refer to CHANGELOG.md for details.

create-vite@8.0.2

Please refer to CHANGELOG.md for details.

v8.0.2

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

8.0.3 (2026-03-26)

Features

Bug Fixes

  • html: cache unfiltered CSS list to prevent missing styles across entries (#22017) (5464190)
  • module-runner: handle non-ascii characters in base64 sourcemaps (#21985) (77c95bf)
  • module-runner: skip re-import if the runner is closed (#22020) (ee2c2cd)
  • optimizer: scan is not resolving sub path import if used in a glob import (#22018) (ddfe20d)
  • ssr: ssrTransform incorrectly rewrites meta identifier inside import.meta when a binding named meta exists (#22019) (cff5f0c)

Miscellaneous Chores

Tests

8.0.2 (2026-03-23)

Features

Bug Fixes

Miscellaneous Chores

  • deps: update dependency @​vitejs/devtools to ^0.1.5 (#21992) (b2dd65b)
Commits
  • 6a34ac3 fix(deps): update all non-major dependencies (#21096)
  • 02ceaec chore(deps): update dependency @​rollup/plugin-commonjs to v29 (#21099)

Bumps the dev-tooling group with 11 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.0` |
| [@microsoft/api-extractor](https://github.com/microsoft/rushstack/tree/HEAD/apps/api-extractor) | `7.57.7` | `7.58.0` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `10.3.1` | `10.3.4` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `10.3.1` | `10.3.4` |
| [esbuild](https://github.com/evanw/esbuild) | `0.27.4` | `0.28.0` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core) | `10.3.1` | `10.3.4` |
| [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.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.1` | `8.0.3` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.0` | `4.1.2` |



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.0
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Commits](https://github.com/webpro-nl/knip/commits/knip@6.3.0/packages/knip)

Updates `@microsoft/api-extractor` from 7.57.7 to 7.58.0
- [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.0/apps/api-extractor)

Updates `@storybook/react` from 10.3.1 to 10.3.4
- [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.4/code/renderers/react)

Updates `@storybook/react-vite` from 10.3.1 to 10.3.4
- [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.4/code/frameworks/react-vite)

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 `storybook` from 10.3.1 to 10.3.4
- [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.4/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.0
- [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.0/packages/typescript-eslint)

Updates `vite` from 8.0.1 to 8.0.3
- [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/create-vite@8.0.3/packages/vite)

Updates `vitest` from 4.1.0 to 4.1.2
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.2/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.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-tooling
- dependency-name: "@microsoft/api-extractor"
  dependency-version: 7.58.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-tooling
- dependency-name: "@storybook/react"
  dependency-version: 10.3.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
- dependency-name: "@storybook/react-vite"
  dependency-version: 10.3.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
- dependency-name: esbuild
  dependency-version: 0.28.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-tooling
- dependency-name: storybook
  dependency-version: 10.3.4
  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.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-tooling
- dependency-name: vite
  dependency-version: 8.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
- dependency-name: vitest
  dependency-version: 4.1.2
  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 3, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 7, 2026

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

@dependabot dependabot bot closed this Apr 7, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dev-tooling-2d570c9c28 branch April 7, 2026 07:29
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