Skip to content

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

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

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

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 16, 2026

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

Package From To
@types/node 25.1.0 25.2.3
@types/vscode 1.108.1 1.109.0
esbuild 0.27.2 0.27.3
@playwright/experimental-ct-react 1.58.1 1.58.2
@types/react 19.2.10 19.2.14
@vitejs/plugin-react 5.1.2 5.1.4
vite-tsconfig-paths 6.0.5 6.1.1
@axe-core/playwright 4.11.0 4.11.1
@storybook/addon-docs 10.2.3 10.2.8
@storybook/addon-themes 10.2.3 10.2.8
@storybook/react-vite 10.2.3 10.2.8
eslint-plugin-storybook 10.2.3 10.2.8
storybook 10.2.3 10.2.8
glob 13.0.0 13.0.3
style-dictionary 5.2.0 5.3.0

Updates @types/node from 25.1.0 to 25.2.3

Commits

Updates @types/vscode from 1.108.1 to 1.109.0

Commits

Updates esbuild from 0.27.2 to 0.27.3

Release notes

Sourced from esbuild's releases.

v0.27.3

  • Preserve URL fragments in data URLs (#4370)

    Consider the following HTML, CSS, and SVG:

    • index.html:

      <!DOCTYPE html>
      <html>
        <head><link rel="stylesheet" href="icons.css"></head>
        <body><div class="triangle"></div></body>
      </html>
    • icons.css:

      .triangle {
        width: 10px;
        height: 10px;
        background: currentColor;
        clip-path: url(./triangle.svg#x);
      }
    • triangle.svg:

      <svg xmlns="http://www.w3.org/2000/svg">
        <defs>
          <clipPath id="x">
            <path d="M0 0H10V10Z"/>
          </clipPath>
        </defs>
      </svg>

    The CSS uses a URL fragment (the #x) to reference the clipPath element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the dataurl loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:

    /* icons.css */
    .triangle {
      width: 10px;
      height: 10px;
      background: currentColor;
      clip-path: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="x"><path d="M0 0H10V10Z"/></clipPath></defs></svg>#x');
    }

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.27.3

  • Preserve URL fragments in data URLs (#4370)

    Consider the following HTML, CSS, and SVG:

    • index.html:

      <!DOCTYPE html>
      <html>
        <head><link rel="stylesheet" href="icons.css"></head>
        <body><div class="triangle"></div></body>
      </html>
    • icons.css:

      .triangle {
        width: 10px;
        height: 10px;
        background: currentColor;
        clip-path: url(./triangle.svg#x);
      }
    • triangle.svg:

      <svg xmlns="http://www.w3.org/2000/svg">
        <defs>
          <clipPath id="x">
            <path d="M0 0H10V10Z"/>
          </clipPath>
        </defs>
      </svg>

    The CSS uses a URL fragment (the #x) to reference the clipPath element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the dataurl loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:

    /* icons.css */
    .triangle {
      width: 10px;
      height: 10px;
      background: currentColor;
      clip-path: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="x"><path d="M0 0H10V10Z"/></clipPath></defs></svg>#x');
    }

... (truncated)

Commits
  • 9129e00 publish 0.27.3 to npm
  • e20e411 small fix to release notes
  • 0dc0f2d fix #4322: parse and print CSS @scope rules
  • 55fe391 update firefox css gradient support
  • 2c35297 update gradient lowering transform
  • 9209e44 Update Go to 1.25.7 (#4388)
  • e8d861b close #4374: compat table for the using feature
  • 19b8887 no longer need williamkapke/node-compat-table
  • 7e44218 the kangax/compat-table repo moved to a new url
  • 23b9338 run make update-compat-table
  • Additional commits viewable in compare view

Updates @playwright/experimental-ct-react from 1.58.1 to 1.58.2

Release notes

Sourced from @​playwright/experimental-ct-react's releases.

v1.58.2

Highlights

#39121 fix(trace viewer): make paths via stdin work #39129 fix: do not force swiftshader on chromium mac

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0
Commits

Updates @types/react from 19.2.10 to 19.2.14

Commits

Updates @vitejs/plugin-react from 5.1.2 to 5.1.4

Release notes

Sourced from @​vitejs/plugin-react's releases.

plugin-react@5.1.4

Fix canSkipBabel not accounting for babel.overrides (#1098)

When configuring babel.overrides without top-level plugins or presets, Babel was incorrectly skipped. The canSkipBabel function now checks for overrides.length to ensure override configurations are processed.

plugin-react@5.1.3

No release notes provided.

Changelog

Sourced from @​vitejs/plugin-react's changelog.

5.1.4 (2026-02-10)

Fix canSkipBabel not accounting for babel.overrides (#1098)

When configuring babel.overrides without top-level plugins or presets, Babel was incorrectly skipped. The canSkipBabel function now checks for overrides.length to ensure override configurations are processed.

5.1.3 (2026-02-02)

Commits

Updates vite-tsconfig-paths from 6.0.5 to 6.1.1

Release notes

Sourced from vite-tsconfig-paths's releases.

v6.1.0

Features

  • New importerFilter option: Provides fine-grained control over which files should have their imports resolved by this plugin. (Closes #175, #193)
  • Ignore .d.ts overrides: The plugin now ignores resolutions that point to .d.ts files, avoiding issues when tsconfig is used for opt-in type overrides. (Closes #179, #180)

Performance

  • Hoisted regular expressions out of the hot path in the resolver for better performance.

Internal

  • Added resolvedToDeclarationFile event to the debug log file.
Commits
  • dff2e93 chore: release v6.1.1
  • 947f434 fix: skip .json resolutions in certain cases
  • 457211a chore(docs): mention the importerFilter option
  • 2152461 chore: upgrade vitest
  • c5659ce chore: release v6.1.0
  • 93dd887 chore: add "resolvedToDeclarationFile" event to log file
  • e1e7678 feat: ignore .d.ts-only overrides in tsconfig
  • c8e4ec3 chore(perf): hoist regexes out of hot path
  • d0ad01c feat: add importerFilter option
  • See full diff in compare view

Updates @axe-core/playwright from 4.11.0 to 4.11.1

Release notes

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

Release 4.11.1

Bug Fixes

Changelog

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

4.11.1 (2026-01-09)

Bug Fixes

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​axe-core/playwright since your current version.


Updates @storybook/addon-docs from 10.2.3 to 10.2.8

Release notes

Sourced from @​storybook/addon-docs's releases.

v10.2.8

10.2.8

v10.2.7

10.2.7

v10.2.6

10.2.6

v10.2.5

10.2.5

v10.2.4

10.2.4

Changelog

Sourced from @​storybook/addon-docs's changelog.

10.2.8

10.2.7

10.2.6

10.2.5

10.2.4

Commits
  • 719b6ca Bump version from "10.2.7" to "10.2.8" [skip ci]
  • 8d687ec Bump version from "10.2.6" to "10.2.7" [skip ci]
  • cc0d1f9 Bump version from "10.2.5" to "10.2.6" [skip ci]
  • 1053c2a Bump version from "10.2.4" to "10.2.5" [skip ci]
  • 8e2b782 Bump version from "10.2.3" to "10.2.4" [skip ci]
  • See full diff in compare view

Updates @storybook/addon-themes from 10.2.3 to 10.2.8

Release notes

Sourced from @​storybook/addon-themes's releases.

v10.2.8

10.2.8

v10.2.7

10.2.7

v10.2.6

10.2.6

v10.2.5

10.2.5

v10.2.4

10.2.4

Changelog

Sourced from @​storybook/addon-themes's changelog.

10.2.8

10.2.7

10.2.6

10.2.5

10.2.4

Commits
  • 719b6ca Bump version from "10.2.7" to "10.2.8" [skip ci]
  • 8d687ec Bump version from "10.2.6" to "10.2.7" [skip ci]
  • cc0d1f9 Bump version from "10.2.5" to "10.2.6" [skip ci]
  • 1053c2a Bump version from "10.2.4" to "10.2.5" [skip ci]
  • 8e2b782 Bump version from "10.2.3" to "10.2.4" [skip ci]
  • See full diff in compare view

Updates @storybook/react-vite from 10.2.3 to 10.2.8

Release notes

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

v10.2.8

10.2.8

v10.2.7

10.2.7

v10.2.6

10.2.6

v10.2.5

10.2.5

v10.2.4

10.2.4

Changelog

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

10.2.8

10.2.7

10.2.6

10.2.5

10.2.4

Commits
  • 719b6ca Bump version from "10.2.7" to "10.2.8" [skip ci]
  • 8d687ec Bump version from "10.2.6" to "10.2.7" [skip ci]
  • cc0d1f9 Bump version from "10.2.5" to "10.2.6" [skip ci]
  • 1053c2a Bump version from "10.2.4" to "10.2.5" [skip ci]
  • 8e2b782 Bump version from "10.2.3" to "10.2.4" [skip ci]
  • See full diff in compare view

Updates eslint-plugin-storybook from 10.2.3 to 10.2.8

Release notes

Sourced from eslint-plugin-storybook's releases.

v10.2.8

10.2.8

v10.2.7

10.2.7

v10.2.6

10.2.6

v10.2.5

10.2.5

v10.2.4

10.2.4

@github-actions
Copy link
Contributor

github-actions bot commented Feb 16, 2026

⚠️ Changeset Validation Failed

The following packages have been modified but are not included in any changeset:

  • @grasdouble/cdn_autobuild-server
  • @grasdouble/lufa_design-system
  • @grasdouble/lufa_design-system-cli
  • @grasdouble/lufa_design-system-docusaurus
  • @grasdouble/lufa_design-system-playwright
  • @grasdouble/lufa_design-system-storybook
  • @grasdouble/lufa_design-system-themes
  • @grasdouble/lufa_design-system-tokens
  • @grasdouble/lufa_microfrontend_home
  • @grasdouble/lufa_microfrontend_main-container
  • @grasdouble/lufa_plugin_vscode_lufa-ds-preview

What you need to do:

  1. Run pnpm changeset to create a new changeset
  2. Select the modified packages that need version bumps
  3. Choose the appropriate version bump (major, minor, or patch)
  4. Write a clear description of the changes
  5. Commit the generated changeset file

All modified packages:

  • @grasdouble/cdn_autobuild-server
  • @grasdouble/lufa_design-system
  • @grasdouble/lufa_design-system-cli
  • @grasdouble/lufa_design-system-docusaurus
  • @grasdouble/lufa_design-system-playwright
  • @grasdouble/lufa_design-system-storybook
  • @grasdouble/lufa_design-system-themes
  • @grasdouble/lufa_design-system-tokens
  • @grasdouble/lufa_microfrontend_home
  • @grasdouble/lufa_microfrontend_main-container
  • @grasdouble/lufa_plugin_vscode_lufa-ds-preview

Why is this important?

Changesets ensure that:

  • All package changes are properly versioned
  • Changelogs are automatically generated
  • Dependent packages are updated correctly
  • Release notes are comprehensive

Need help?

@github-actions
Copy link
Contributor

github-actions bot commented Feb 16, 2026

⚡ Performance Budget Report

✅ All Performance Budgets Passed!

Your changes meet all performance requirements. Great work! 🎉

📊 Performance Metrics

Metric Current Budget Status
Bundle Size 233.91 KB 250 KB ✅ Pass
JS Size 87.96 KB - ℹ️ Info
CSS Size 145.95 KB - ℹ️ Info
Gzipped Size 39.98 KB 50 KB ✅ Pass
Build Time 16.98s 30s ✅ Pass
CSS Cascade 567ms 1000ms ✅ Pass

📦 Size Breakdown

JavaScript: 87.96 KB
CSS:        145.95 KB
────────────────────
Total:      233.91 KB
Gzipped:    39.98 KB (17% compression)

⏱️ Timing Breakdown

Build:         16.98s
CSS Cascade:   567ms

📈 Performance History

Track performance trends over time by comparing metrics across PRs.

🔧 Run Locally

# Build and check bundle size
pnpm ds:main:build
ls -lh packages/design-system/main/dist/

# Run performance tests
pnpm ds:test:ci

# Run CLI validation
cd packages/design-system/cli
pnpm exec tsx src/index.ts validate --theme <theme.css> --all

📊 View detailed report

@github-actions
Copy link
Contributor

github-actions bot commented Feb 16, 2026

🎭 Playwright Component Test Results

✅ All Tests Passed!

No visual regressions detected. All components render as expected! 🎉

Metric Count
Total Tests 721
Passed 721 ✅
Failed 0
Visual Diffs 0
Execution Time 104.23s / 120s ✅

📋 Components Tested

All design system components were tested in:

  • ☀️ Light mode
  • 🌙 Dark mode
  • 💻 Desktop viewport (1280x720)

Tested Components:

  • Box, Stack, Text, Icon
  • Button, Badge, Divider
  • Center, Container, Flex, Grid
  • Portal, VisuallyHidden, Label
  • Input, Card (compositions)

📊 View full test report

…ectory with 15 updates

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

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.1.0` | `25.2.3` |
| [@types/vscode](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/vscode) | `1.108.1` | `1.109.0` |
| [esbuild](https://github.com/evanw/esbuild) | `0.27.2` | `0.27.3` |
| [@playwright/experimental-ct-react](https://github.com/microsoft/playwright) | `1.58.1` | `1.58.2` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.10` | `19.2.14` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `5.1.2` | `5.1.4` |
| [vite-tsconfig-paths](https://github.com/aleclarson/vite-tsconfig-paths) | `6.0.5` | `6.1.1` |
| [@axe-core/playwright](https://github.com/dequelabs/axe-core-npm) | `4.11.0` | `4.11.1` |
| [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs) | `10.2.3` | `10.2.8` |
| [@storybook/addon-themes](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/themes) | `10.2.3` | `10.2.8` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `10.2.3` | `10.2.8` |
| [eslint-plugin-storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/eslint-plugin) | `10.2.3` | `10.2.8` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core) | `10.2.3` | `10.2.8` |
| [glob](https://github.com/isaacs/node-glob) | `13.0.0` | `13.0.3` |
| [style-dictionary](https://github.com/style-dictionary/style-dictionary) | `5.2.0` | `5.3.0` |



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

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

Updates `esbuild` from 0.27.2 to 0.27.3
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.2...v0.27.3)

Updates `@playwright/experimental-ct-react` from 1.58.1 to 1.58.2
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.58.1...v1.58.2)

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

Updates `@vitejs/plugin-react` from 5.1.2 to 5.1.4
- [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@5.1.4/packages/plugin-react)

Updates `vite-tsconfig-paths` from 6.0.5 to 6.1.1
- [Release notes](https://github.com/aleclarson/vite-tsconfig-paths/releases)
- [Commits](aleclarson/vite-tsconfig-paths@v6.0.5...v6.1.1)

Updates `@axe-core/playwright` from 4.11.0 to 4.11.1
- [Release notes](https://github.com/dequelabs/axe-core-npm/releases)
- [Changelog](https://github.com/dequelabs/axe-core-npm/blob/develop/CHANGELOG.md)
- [Commits](dequelabs/axe-core-npm@v4.11.0...v4.11.1)

Updates `@storybook/addon-docs` from 10.2.3 to 10.2.8
- [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.2.8/code/addons/docs)

Updates `@storybook/addon-themes` from 10.2.3 to 10.2.8
- [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.2.8/code/addons/themes)

Updates `@storybook/react-vite` from 10.2.3 to 10.2.8
- [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.2.8/code/frameworks/react-vite)

Updates `eslint-plugin-storybook` from 10.2.3 to 10.2.8
- [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.2.8/code/lib/eslint-plugin)

Updates `storybook` from 10.2.3 to 10.2.8
- [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.2.8/code/core)

Updates `glob` from 13.0.0 to 13.0.3
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v13.0.0...v13.0.3)

Updates `style-dictionary` from 5.2.0 to 5.3.0
- [Release notes](https://github.com/style-dictionary/style-dictionary/releases)
- [Changelog](https://github.com/style-dictionary/style-dictionary/blob/main/CHANGELOG.md)
- [Commits](style-dictionary/style-dictionary@v5.2.0...v5.3.0)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 25.2.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@types/vscode"
  dependency-version: 1.109.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: esbuild
  dependency-version: 0.27.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@playwright/experimental-ct-react"
  dependency-version: 1.58.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.2.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 5.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: vite-tsconfig-paths
  dependency-version: 6.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@axe-core/playwright"
  dependency-version: 4.11.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-docs"
  dependency-version: 10.2.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-themes"
  dependency-version: 10.2.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/react-vite"
  dependency-version: 10.2.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-storybook
  dependency-version: 10.2.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: storybook
  dependency-version: 10.2.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: glob
  dependency-version: 13.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: style-dictionary
  dependency-version: 5.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/development-dependencies-2c387b0b1a branch from c75d808 to 449f3cd Compare February 17, 2026 20:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants

Comments