Skip to content

chore(deps): bump the production-dependencies group across 1 directory with 18 updates#14

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-e180f80e3d
Open

chore(deps): bump the production-dependencies group across 1 directory with 18 updates#14
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-e180f80e3d

Conversation

@dependabot
Copy link

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

Bumps the production-dependencies group with 18 updates in the / directory:

Package From To
@clack/prompts 0.11.0 1.0.0
@floating-ui/dom 1.7.4 1.7.5
esbuild-sass-plugin 3.3.1 3.6.0
globby 16.0.0 16.1.0
lightningcss 1.30.2 1.31.1
minimatch 10.1.1 10.1.2
nx 22.2.6 22.4.5
pdfjs-dist 5.4.530 5.4.624
plotly.js-dist-min 2.35.3 3.3.1
preact 10.28.2 10.28.3
preact-render-to-string 6.6.4 6.6.5
satori 0.18.3 0.19.1
shiki 1.29.2 3.22.0
unist-util-visit 5.0.0 5.1.0
ws 8.18.3 8.19.0
@types/node 24.10.4 25.2.1
esbuild 0.27.1 0.27.2
prettier 3.7.4 3.8.1

Updates @clack/prompts from 0.11.0 to 1.0.0

Release notes

Sourced from @​clack/prompts's releases.

@​clack/prompts@​1.0.0

Major Changes

  • c713fd5: The package is now distributed as ESM-only. In v0 releases, the package was dual-published as CJS and ESM.

    For existing CJS projects using Node v20+, please see Node's guide on Loading ECMAScript modules using require().

Minor Changes

  • 415410b: This adds a custom filter function to autocompleteMultiselect. It could be used, for example, to support fuzzy searching logic.

  • 7bc3301: Prompts now have a userInput stored separately from their value.

  • 8409f2c: feat: add styleFrame option for spinner

  • 2837845: Adds suggestion and path prompts

  • 99c3530: Adds format option to the note prompt to allow formatting of individual lines

  • 0aaee4c: Added new taskLog prompt for log output which is cleared on success

  • 729bbb6: Add support for customizable spinner cancel and error messages. Users can now customize these messages either per spinner instance or globally via the updateSettings function to support multilingual CLIs.

    This update also improves the architecture by exposing the core settings to the prompts package, enabling more consistent default message handling across the codebase.

    // Per-instance customization
    const spinner = prompts.spinner({
      cancelMessage: "Operación cancelada", // "Operation cancelled" in Spanish
      errorMessage: "Se produjo un error", // "An error occurred" in Spanish
    });
    // Global customization via updateSettings
    prompts.updateSettings({
    messages: {
    cancel: "Operación cancelada", // "Operation cancelled" in Spanish
    error: "Se produjo un error", // "An error occurred" in Spanish
    },
    });
    // Settings can now be accessed directly
    console.log(prompts.settings.messages.cancel); // "Operación cancelada"
    // Direct options take priority over global settings
    const spinner = prompts.spinner({
    cancelMessage: "Cancelled", // This will be used instead of the global setting
    });

  • 44df9af: Adds a new groupSpacing option to grouped multi-select prompts. If set to an integer greater than 0, it will add that number of new lines between each group.

... (truncated)

Changelog

Sourced from @​clack/prompts's changelog.

1.0.0

Major Changes

  • c713fd5: The package is now distributed as ESM-only. In v0 releases, the package was dual-published as CJS and ESM.

    For existing CJS projects using Node v20+, please see Node's guide on Loading ECMAScript modules using require().

Minor Changes

  • 415410b: This adds a custom filter function to autocompleteMultiselect. It could be used, for example, to support fuzzy searching logic.

  • 7bc3301: Prompts now have a userInput stored separately from their value.

  • 8409f2c: feat: add styleFrame option for spinner

  • 2837845: Adds suggestion and path prompts

  • 99c3530: Adds format option to the note prompt to allow formatting of individual lines

  • 0aaee4c: Added new taskLog prompt for log output which is cleared on success

  • 729bbb6: Add support for customizable spinner cancel and error messages. Users can now customize these messages either per spinner instance or globally via the updateSettings function to support multilingual CLIs.

    This update also improves the architecture by exposing the core settings to the prompts package, enabling more consistent default message handling across the codebase.

    // Per-instance customization
    const spinner = prompts.spinner({
      cancelMessage: "Operación cancelada", // "Operation cancelled" in Spanish
      errorMessage: "Se produjo un error", // "An error occurred" in Spanish
    });
    // Global customization via updateSettings
    prompts.updateSettings({
    messages: {
    cancel: "Operación cancelada", // "Operation cancelled" in Spanish
    error: "Se produjo un error", // "An error occurred" in Spanish
    },
    });
    // Settings can now be accessed directly
    console.log(prompts.settings.messages.cancel); // "Operación cancelada"
    // Direct options take priority over global settings
    const spinner = prompts.spinner({
    cancelMessage: "Cancelled", // This will be used instead of the global setting
    });

  • 44df9af: Adds a new groupSpacing option to grouped multi-select prompts. If set to an integer greater than 0, it will add that number of new lines between each group.

  • 55645c2: Support wrapping autocomplete and select prompts.

  • 9e5bc6c: Add support for signals in prompts, allowing them to be aborted.

  • f2c2b89: Adds AutocompletePrompt to core with comprehensive tests and implement both autocomplete and autocomplete-multiselect components in prompts package.

  • 38019c7: Updates the API for stopping spinners and progress bars to be clearer

... (truncated)

Commits
Maintainer changes

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


Updates @floating-ui/dom from 1.7.4 to 1.7.5

Changelog

Sourced from @​floating-ui/dom's changelog.

1.7.5

Patch Changes

  • Update dependencies: @floating-ui/core@1.7.4
Commits
Maintainer changes

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


Updates esbuild-sass-plugin from 3.3.1 to 3.6.0

Release notes

Sourced from esbuild-sass-plugin's releases.

v3.5.0

Thanks to @​mattlewis92 for fixing css chunk prefix clashes when using transform and multiple plugins #192

Commits

Updates globby from 16.0.0 to 16.1.0

Release notes

Sourced from globby's releases.

v16.1.0


sindresorhus/globby@v16.0.0...v16.1.0

Commits
  • 70c011b 16.1.0
  • eb78791 Add expandNegationOnlyPatterns option
  • 59e269f Fix: Normalize leading-slash negation patterns before task generation
  • See full diff in compare view

Updates lightningcss from 1.30.2 to 1.31.1

Release notes

Sourced from lightningcss's releases.

v1.31.0

Features

Fixes

Commits

Updates minimatch from 10.1.1 to 10.1.2

Commits

Updates nx from 22.2.6 to 22.4.5

Release notes

Sourced from nx's releases.

22.4.5 (2026-02-03)

🚀 Features

  • nx-dev: add server-side page view tracking for docs (#34283)

🩹 Fixes

  • core: handle multibyte UTF-8 characters in socket message consumption (#34151)
  • core: resolve daemon client reconnect queue deadlock (#34284)
  • core: nx should show help for run-one when using project short names (#34303)
  • core: prevent command injection in getNpmPackageVersion (#34309)
  • gradle: ensure that batch output is not overriden for atomized targets (#34268)
  • gradle: enforce that only one gradle task can be passed into gradle executor (#34269)
  • maven: include pom.xml and ancestor pom files as inputs for all targets (#34291)
  • nx-dev: make headers and table options linkable (#34267)
  • nx-dev: fix double-counting and exclude assets from page tracking (#34286)

❤️ Thank You

22.4.4 (2026-01-30)

🚀 Features

  • core: add decorative banners for Nx Cloud CNW completion message (#34270)

🩹 Fixes

  • testing: add timeout to runCommandUntil to prevent hanging tests (#34148)
  • testing: preload vitest/node to prevent race condition on Node 24 (#34261, #34028, #33091)

❤️ Thank You

22.4.3 (2026-01-29)

🚀 Features

... (truncated)

Commits
  • 7931947 fix(core): nx should show help for run-one when using project short names (#3...
  • 4f50437 fix(core): resolve daemon client reconnect queue deadlock (#34284)
  • fea8528 fix(core): handle multibyte UTF-8 characters in socket message consumption (#...
  • 9073f40 docs(misc): update the docs to use more direct language (#34264)
  • afc27c8 fix(core): do not throw error if worker.stdout is not instanceof socket (#34224)
  • 089db87 fix(core): improve plugin worker error messages and lifecycle timeouts (#34251)
  • 86fbeac fix(core): hide already-installed nx packages from suggestion list during nx ...
  • c1c1a64 fix(core): fall back to node_modules when tmp has noexec (#34207)
  • ca38b53 fix(devkit): allow null values in JSON schema validation (#34167)
  • 30abc3f feat(core): display batch tasks in the tui (#33695)
  • Additional commits viewable in compare view

Updates pdfjs-dist from 5.4.530 to 5.4.624

Release notes

Sourced from pdfjs-dist's releases.

v5.4.624

This release contains improvements for accessibility, the annotation editor, image decoding, performance and the viewer.

Changes since v5.4.530

Commits
  • 384c620 Merge pull request #20565 from kairosci/fix-bug-20557
  • e4cd317 Merge pull request #20602 from Snuffleupagus/BasePDFStream-2
  • ecb09d6 Add the current loading percentage to the onPassword callback
  • 4ca205b Add an abstract BasePDFStreamRangeReader class, that all the old `IPDFStrea...
  • 54d8c5e Add an abstract BasePDFStreamReader class, that all the old `IPDFStreamRead...
  • 4a8fb4d Add an abstract BasePDFStream class, that all the old IPDFStream implemen...
  • a80f10f Remove the onProgress callback from the IPDFStreamRangeReader interface
  • 05b78ce Stop registering an onProgress callback on the PDFWorkerStreamRangeReader...
  • 9872657 Remove the unused IPDFStreamRangeReader.prototype.isStreamingSupported getter
  • 62d5408 Stop tracking progressiveDataLength in the ChunkedStreamManager class
  • Additional commits viewable in compare view

Updates plotly.js-dist-min from 2.35.3 to 3.3.1

Release notes

Sourced from plotly.js-dist-min's releases.

v3.3.1

Added

  • Add support for arrays for the pie properties showlegend and legend, so that these can be configured per slice. [#7580], with thanks to @​my-tien for the contribution!

Changed

  • Replace deprecated String.substr() with String.slice() [#7662], with thanks to @​JBR-0100 for the contribution!

Full Changelog: plotly/plotly.js@v3.3.0...v3.3.1

v3.3.0

Added

  • Add hovertemplate for candlestick and ohlc traces [#7619]
  • Generate list of ISO codes for provided topojson maps, update info for some disputed territories [#7622]

Changed

  • Turn off borders for plot container in CSS reset [#7617]

Fixed

  • Fix KDE sampling precision in violin trace to eliminate floating-point drift and prevent density underrun/overrun [#7581], with thanks to @​Koookadooo for the contribution!

v3.2.0

Added

  • Add hovertemplatefallback and texttemplatefallback attributes [#7577]

Fixed

  • Fix wrong scrolling behavior for legend [#7067], with thanks to @​Lexachoc for the contribution!
  • Fix bug affecting use of customdata with typed arrays [#7608]

Full Changelog: plotly/plotly.js@v3.1.2...v3.2.0

v3.1.2

Added

  • Add "SI extended" formatting rule for tick exponents on axis labels, allowing values to be displayed with extended SI prefixes (e.g., femto, pico, atto) [#7249], with thanks to @​dberardi99 for the contribution!

Fixed

  • Fix editable title.text for ternary, polar, colorbar, and rangeslider (regression introduced in 3.0.0) [#7513], with thanks to @​Lexachoc for the contribution!
  • Fix layout.title.subtitle does not properly clear/remove from the chart when subtitle object is not in place, or subtitle.text set to null, empty string, or whitespace-only values [#7571], with thanks to @​cminn10 for the contribution!
  • Fix issue where visible property of one legend was affecting another [#7574]
  • Resolve incorrect shape clipping for domain-referenced shapes on n*10th subplot [#7576]
  • Update config diff check method to handle nested arrays [#7579]

v3.1.1

Fixed

  • Update plot with all config changes during call to Plotly.react [#7475]
  • Fix wheel event handler Violation in Chromium by setting passive: true [#7517]
  • Fix locationmode warning to be less aggressive: show warning only when locationmode is 'country names' [#7520]
  • Refactor drawMainTitle to use context-specific selections for title and subtitle, avoiding conflicts when multiple plots are present on the same page [#7522], with thanks to @​davibarbosa2 for the contribution!
  • Fix broken styling of map attributions [#7526]
  • Calculate colorscale properly for histogram when marker cmin/cmax/cmid values are undefined [#7534]
  • Tidy up some stray characters in attribute descriptions [#7539], [#7540]

... (truncated)

Changelog

Sourced from plotly.js-dist-min's changelog.

[3.3.1] -- 2025-12-12

Added

  • Add support for arrays for the pie properties showlegend and legend, so that these can be configured per slice. [#7580], with thanks to @​my-tien for the contribution!

Changed

  • Replace deprecated String.substr() with String.slice() [#7662], with thanks to @​JBR-0100 for the contribution!

[3.3.0] -- 2025-11-14

Added

  • Add hovertemplate for candlestick and ohlc traces [#7619]
  • Generate list of ISO codes for provided topojson maps, update info for some disputed territories [#7622]

Changed

  • Turn off borders for plot container in CSS reset [#7617]

Fixed

  • Fix KDE sampling precision in violin trace to eliminate floating-point drift and prevent density underrun/overrun [#7581], with thanks to @​Koookadooo for the contribution!

[3.2.0] -- 2025-10-30

Added

  • Add hovertemplatefallback and texttemplatefallback attributes [#7577]

Fixed

  • Fix wrong scrolling behavior for legend [#7067], with thanks to @​Lexachoc for the contribution!
  • Fix bug affecting use of customdata with typed arrays [#7608]

[3.1.2] -- 2025-10-16

Added

  • Add "SI extended" formatting rule for tick exponents on axis labels, allowing values to be displayed with extended SI prefixes (e.g., femto, pico, atto) [#7249], with thanks to @​dberardi99 for the contribution!

Fixed

  • Fix editable title.text for ternary, polar, colorbar, and rangeslider (regression introduced in 3.0.0) [#7513], with thanks to @​Lexachoc for the contribution!
  • Fix layout.title.subtitle does not properly clear/remove from the chart when subtitle object is not in place, or subtitle.text set to null, empty string, or whitespace-only values [#7571], with thanks to @​cminn10 for the contribution!
  • Fix issue where visible property of one legend was affecting another. [#7574]
  • Resolve incorrect shape clipping for domain-referenced shapes on n*10th subplot. [#7576]
  • Update config diff check method to handle nested arrays [#7579]

[3.1.1] -- 2025-09-29

Fixed

  • Update plot with all config changes during call to Plotly.react [#7475]
  • Fix wheel event handler Violation in Chromium by setting passive: true [#7517]

... (truncated)

Commits
  • 302395a 3.3.1
  • f8ebcd5 updates for release v3.3.1
  • 27a23e1 Merge pull request #7662 from JBR-0100/fix/deprecated-substr
  • a9fb511 Update draftlog
  • ff31946 docs: add draftlog entry for substr to slice replacement
  • 12f53ea test: replace substring with slice for consistency
  • 7d5a063 test: replace substr with substring in test files
  • 8be5c4b Merge pull request #7580 from my-tien/pie-legend-visibility
  • fe936c7 refactor: replace remaining substr in test files
  • cbe853b Update draftlog
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by packages-team-plotly, a new releaser for plotly.js-dist-min since your current version.


Updates preact from 10.28.2 to 10.28.3

Release notes

Sourced from preact's releases.

10.28.3

Fixes

Maintenance

Commits

Updates preact-render-to-string from 6.6.4 to 6.6.5

Release notes

Sourced from preact-render-to-string's releases.

v6.6.5

Patch Changes

Changelog

Sourced from preact-render-to-string's changelog.

6.6.5

Patch Changes

Commits

Updates satori from 0.18.3 to 0.19.1

Release notes

Sourced from satori's releases.

0.19.1

0.19.1 (2026-01-16)

Bug Fixes

0.19.0

0.19.0 (2026-01-16)

Bug Fixes

  • textShadow with transparent text color (#718) (02ff1c0)

Features

  • Color support in backgroundImage for semi-transparent gradients (#719) (2630740)

0.18.4

0.18.4 (2026-01-16)

Bug Fixes

Commits
  • 6203e87 fix: support text-decoration-skip-ink (#717)
  • 2630740 feat: Color support in backgroundImage for semi-transparent gradients (#719)
  • 02ff1c0 fix: textShadow with transparent text color (#718)
  • e1022e5 fix: shuding's Twitter link in README (#720)
  • See full diff in compare view

Updates shiki from 1.29.2 to 3.22.0

Release notes

Sourced from shiki's releases.

v3.22.0

   🚀 Features

    View changes on GitHub

v3.21.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v3.20.0

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v3.19.0

   🚀 Features

   🐞 Bug Fixes

... (truncated)

Commits
Maintainer changes

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


Updates unist-util-visit from 5.0.0 to 5.1.0

Release notes

Sourced from unist-util-visit's releases.

5.1.0

Types

Full Changelog: syntax-tree/unist-util-visit@5.0.0...5.1.0

Commits

…y with 18 updates

Bumps the production-dependencies group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@clack/prompts](https://github.com/bombshell-dev/clack/tree/HEAD/packages/prompts) | `0.11.0` | `1.0.0` |
| [@floating-ui/dom](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/dom) | `1.7.4` | `1.7.5` |
| [esbuild-sass-plugin](https://github.com/glromeo/esbuild-sass-plugin) | `3.3.1` | `3.6.0` |
| [globby](https://github.com/sindresorhus/globby) | `16.0.0` | `16.1.0` |
| [lightningcss](https://github.com/parcel-bundler/lightningcss) | `1.30.2` | `1.31.1` |
| [minimatch](https://github.com/isaacs/minimatch) | `10.1.1` | `10.1.2` |
| [nx](https://github.com/nrwl/nx/tree/HEAD/packages/nx) | `22.2.6` | `22.4.5` |
| [pdfjs-dist](https://github.com/mozilla/pdf.js) | `5.4.530` | `5.4.624` |
| [plotly.js-dist-min](https://github.com/plotly/plotly.js) | `2.35.3` | `3.3.1` |
| [preact](https://github.com/preactjs/preact) | `10.28.2` | `10.28.3` |
| [preact-render-to-string](https://github.com/preactjs/preact-render-to-string) | `6.6.4` | `6.6.5` |
| [satori](https://github.com/vercel/satori) | `0.18.3` | `0.19.1` |
| [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki) | `1.29.2` | `3.22.0` |
| [unist-util-visit](https://github.com/syntax-tree/unist-util-visit) | `5.0.0` | `5.1.0` |
| [ws](https://github.com/websockets/ws) | `8.18.3` | `8.19.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.10.4` | `25.2.1` |
| [esbuild](https://github.com/evanw/esbuild) | `0.27.1` | `0.27.2` |
| [prettier](https://github.com/prettier/prettier) | `3.7.4` | `3.8.1` |



Updates `@clack/prompts` from 0.11.0 to 1.0.0
- [Release notes](https://github.com/bombshell-dev/clack/releases)
- [Changelog](https://github.com/bombshell-dev/clack/blob/main/packages/prompts/CHANGELOG.md)
- [Commits](https://github.com/bombshell-dev/clack/commits/@clack/prompts@1.0.0/packages/prompts)

Updates `@floating-ui/dom` from 1.7.4 to 1.7.5
- [Release notes](https://github.com/floating-ui/floating-ui/releases)
- [Changelog](https://github.com/floating-ui/floating-ui/blob/master/packages/dom/CHANGELOG.md)
- [Commits](https://github.com/floating-ui/floating-ui/commits/HEAD/packages/dom)

Updates `esbuild-sass-plugin` from 3.3.1 to 3.6.0
- [Release notes](https://github.com/glromeo/esbuild-sass-plugin/releases)
- [Commits](https://github.com/glromeo/esbuild-sass-plugin/commits)

Updates `globby` from 16.0.0 to 16.1.0
- [Release notes](https://github.com/sindresorhus/globby/releases)
- [Commits](sindresorhus/globby@v16.0.0...v16.1.0)

Updates `lightningcss` from 1.30.2 to 1.31.1
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](https://github.com/parcel-bundler/lightningcss/commits)

Updates `minimatch` from 10.1.1 to 10.1.2
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v10.1.1...v10.1.2)

Updates `nx` from 22.2.6 to 22.4.5
- [Release notes](https://github.com/nrwl/nx/releases)
- [Commits](https://github.com/nrwl/nx/commits/22.4.5/packages/nx)

Updates `pdfjs-dist` from 5.4.530 to 5.4.624
- [Release notes](https://github.com/mozilla/pdf.js/releases)
- [Commits](mozilla/pdf.js@v5.4.530...v5.4.624)

Updates `plotly.js-dist-min` from 2.35.3 to 3.3.1
- [Release notes](https://github.com/plotly/plotly.js/releases)
- [Changelog](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md)
- [Commits](plotly/plotly.js@v2.35.3...v3.3.1)

Updates `preact` from 10.28.2 to 10.28.3
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](preactjs/preact@10.28.2...10.28.3)

Updates `preact-render-to-string` from 6.6.4 to 6.6.5
- [Release notes](https://github.com/preactjs/preact-render-to-string/releases)
- [Changelog](https://github.com/preactjs/preact-render-to-string/blob/main/CHANGELOG.md)
- [Commits](preactjs/preact-render-to-string@v6.6.4...v6.6.5)

Updates `satori` from 0.18.3 to 0.19.1
- [Release notes](https://github.com/vercel/satori/releases)
- [Commits](vercel/satori@0.18.3...0.19.1)

Updates `shiki` from 1.29.2 to 3.22.0
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v3.22.0/packages/shiki)

Updates `unist-util-visit` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/syntax-tree/unist-util-visit/releases)
- [Commits](syntax-tree/unist-util-visit@5.0.0...5.1.0)

Updates `ws` from 8.18.3 to 8.19.0
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.18.3...8.19.0)

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

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

Updates `prettier` from 3.7.4 to 3.8.1
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.7.4...3.8.1)

---
updated-dependencies:
- dependency-name: "@clack/prompts"
  dependency-version: 1.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@floating-ui/dom"
  dependency-version: 1.7.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: esbuild-sass-plugin
  dependency-version: 3.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: globby
  dependency-version: 16.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: lightningcss
  dependency-version: 1.31.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: minimatch
  dependency-version: 10.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: nx
  dependency-version: 22.4.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pdfjs-dist
  dependency-version: 5.4.624
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: plotly.js-dist-min
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: preact
  dependency-version: 10.28.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: preact-render-to-string
  dependency-version: 6.6.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: satori
  dependency-version: 0.19.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: shiki
  dependency-version: 3.22.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: unist-util-visit
  dependency-version: 5.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: ws
  dependency-version: 8.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.2.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: esbuild
  dependency-version: 0.27.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: prettier
  dependency-version: 3.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

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 Feb 5, 2026
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