Skip to content

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

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/production-dependencies-dcdf8374ba
Open

dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/production-dependencies-dcdf8374ba

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 31, 2026 •

Copy link
Copy Markdown
Contributor

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

Package From To
@clack/prompts 0.9.1 1.8.0
@floating-ui/dom 1.6.13 1.8.0
@napi-rs/simple-git 0.1.19 1.1.0
chalk 5.4.1 6.0.0
chokidar 4.0.3 5.0.0
esbuild-sass-plugin 3.3.1 3.7.0
flexsearch 0.7.43 0.8.212
globby 14.0.2 16.2.4
hast-util-to-html 9.0.4 9.0.5
hast-util-to-jsx-runtime 2.3.2 2.3.6
is-absolute-url 4.0.1 5.0.0
js-yaml 4.1.0 5.4.1
lightningcss 1.29.1 1.33.0
mdast-util-to-hast 13.2.0 13.2.1
pixi.js 8.6.6 8.20.1
preact 10.25.4 10.29.8
preact-render-to-string 6.5.12 6.7.0
pretty-bytes 6.1.1 7.1.3
rehype-citation 2.2.2 2.3.2
rehype-mathjax 6.0.0 7.1.0
rehype-pretty-code 0.14.0 0.14.5
remark-gfm 4.0.0 4.0.1
remark-rehype 11.1.1 11.1.2
remark-smartypants 3.0.2 3.0.3
rimraf 6.0.1 6.1.3
serve-handler 6.1.6 6.1.7
shiki 1.26.1 4.4.3
toml 3.0.0 5.0.0
workerpool 9.2.0 10.0.3
ws 8.18.0 8.21.3
@types/ws 8.5.13 8.18.1
yargs 17.7.2 18.1.0
@types/node 22.10.5 26.5.1
@types/yargs 17.0.33 17.0.35
esbuild 0.24.2 0.28.2
prettier 3.4.2 3.9.6
tsx 4.19.2 4.23.13
typescript 5.7.3 7.0.2

Updates @clack/prompts from 0.9.1 to 1.8.0

Release notes

Sourced from @​clack/prompts's releases.

@​clack/prompts@​1.8.0

Minor Changes

  • #592 caa32e8 Thanks @​gameroman! - Export CANCEL_SYMBOL constant from @clack/core and @clack/prompts

  • #594 37fca4e Thanks @​dreyfus92! - Add tab-completion to the path prompt: pressing Tab fills the input with the focused suggestion, so you can quickly descend into deep directories (type / and Tab again). Powered by a new opt-in completeOnTab option on autocomplete, which also shows a Tab: complete hint in the instructions footer. Default autocomplete behavior is unchanged.

  • #583 ae636dd Thanks @​43081j! - Add async validation support to prompts, and validation state rendering to text prompts.

Patch Changes

@​clack/prompts@​1.7.0

Minor Changes

  • #574 8f1c380 Thanks @​dreyfus92! - Add showInstructions option to select, multiselect, and groupMultiselect. Keyboard hints remain shown by default; pass showInstructions: false to hide them.

Patch Changes

@​clack/prompts@​1.6.0

Minor Changes

  • #568 f87933f Thanks @​florian-lefebvre! - Updates default formatter of note() to note dim lines anymore

    If you want the old behavior, provide a format() function:

    import { note } from '@clack/prompts';
    +import { styleText } from 'node:util';
    note(
    'You can edit the file src/index.jsx',
    'Next steps.'
    
    { format: (text) => styleText('dim', text) }
    );
  • #567 cc6aab5 Thanks @​dreyfus92! - Add keyboard instruction footers to select, multiselect, and groupMultiselect in the active state, matching autocomplete. No option — always shown.

  • ... (truncated)

    Changelog

    Sourced from @​clack/prompts's changelog.

    1.8.0

    Minor Changes

    • #592 caa32e8 Thanks @​gameroman! - Export CANCEL_SYMBOL constant from @clack/core and @clack/prompts

    • #594 37fca4e Thanks @​dreyfus92! - Add tab-completion to the path prompt: pressing Tab fills the input with the focused suggestion, so you can quickly descend into deep directories (type / and Tab again). Powered by a new opt-in completeOnTab option on autocomplete, which also shows a Tab: complete hint in the instructions footer. Default autocomplete behavior is unchanged.

    • #583 ae636dd Thanks @​43081j! - Add async validation support to prompts, and validation state rendering to text prompts.

    Patch Changes

    1.7.0

    Minor Changes

    • #574 8f1c380 Thanks @​dreyfus92! - Add showInstructions option to select, multiselect, and groupMultiselect. Keyboard hints remain shown by default; pass showInstructions: false to hide them.

    Patch Changes

    1.6.0

    Minor Changes

    • #568 f87933f Thanks @​florian-lefebvre! - Updates default formatter of note() to note dim lines anymore

      If you want the old behavior, provide a format() function:

      import { note } from '@clack/prompts';
      +import { styleText } from 'node:util';
      note(
      'You can edit the file src/index.jsx',
      'Next steps.'
      
      { format: (text) => styleText('dim', text) }
      );

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by GitHub Actions, a new releaser for @​clack/prompts since your current version.


    Updates @floating-ui/dom from 1.6.13 to 1.8.0

    Release notes

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

    @​floating-ui/dom@​1.8.0

    Minor Changes

    • feat: add 'layoutViewport' string option to rootBoundary. Unlike the visual 'viewport' boundary, it remains stable while pinch-zooming or when a mobile software keyboard is open, and unlike a manually passed Rect of the documentElement's client size, it accounts for space reserved by scrollbar-gutter: stable.

    Patch Changes

    • fix: remove redundant passive options from scroll listeners
    • fix: support explicit undefined for optional properties with exactOptionalPropertyTypes
    • fix(autoUpdate): update immediately instead of waiting for the 1s layoutShift refresh throttle when the reference moved during an observer refresh
    • fix(getClippingRect): correct clipping-ancestor filtering for fixed-position elements
    • perf(dom): reduce bundle size and skip redundant per-call work in positioning utilities
    • fix(getViewportRect): account for scrollbar-gutter: stable both-edges reserved space
    • fix(getViewportRect): don't overflow past a left-side document scrollbar
    • fix(platform): don't throw in getClientRects when a virtual element without a getClientRects method is used with the inline() middleware
    • fix(autoUpdate): refresh layout shift observer on root resize
    • Update dependencies: @floating-ui/core@1.8.0, @floating-ui/utils@0.2.12

    @​floating-ui/dom@​1.7.6

    Patch Changes

    • fix(types): ensure Platform type contains detectOverflow type
    • perf: bundle and runtime improvements
    • feat(autoUpdate): allow not passing a floating element
    • Update dependencies: @floating-ui/utils@0.2.11, @floating-ui/core@1.7.5

    @​floating-ui/dom@​1.7.4

    Patch Changes

    • fix(getViewportRect): account for space left by scrollbar-gutter: stable

    @​floating-ui/dom@​1.7.3

    Patch Changes

    • Update dependencies: @floating-ui/core@1.7.3

    @​floating-ui/dom@​1.7.2

    Patch Changes

    • perf: reduce memory allocations
    • Update dependencies: @floating-ui/utils@0.2.10, @floating-ui/core@1.7.2

    @​floating-ui/dom@​1.7.1

    Patch Changes

    • Update dependencies: @floating-ui/core@1.7.1

    @​floating-ui/dom@​1.7.0

    Minor Changes

    ... (truncated)

    Changelog

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

    1.8.0

    Minor Changes

    • feat: add 'layoutViewport' string option to rootBoundary. Unlike the visual 'viewport' boundary, it remains stable while pinch-zooming or when a mobile software keyboard is open, and unlike a manually passed Rect of the documentElement's client size, it accounts for space reserved by scrollbar-gutter: stable.

    Patch Changes

    • fix: remove redundant passive options from scroll listeners
    • fix: support explicit undefined for optional properties with exactOptionalPropertyTypes
    • fix(autoUpdate): update immediately instead of waiting for the 1s layoutShift refresh throttle when the reference moved during an observer refresh
    • fix(getClippingRect): correct clipping-ancestor filtering for fixed-position elements
    • perf(dom): reduce bundle size and skip redundant per-call work in positioning utilities
    • fix(getViewportRect): account for scrollbar-gutter: stable both-edges reserved space
    • fix(getViewportRect): don't overflow past a left-side document scrollbar
    • fix(platform): don't throw in getClientRects when a virtual element without a getClientRects method is used with the inline() middleware
    • fix(autoUpdate): refresh layout shift observer on root resize
    • Update dependencies: @floating-ui/core@1.8.0, @floating-ui/utils@0.2.12

    1.7.6

    Patch Changes

    • fix(types): ensure Platform type contains detectOverflow type
    • perf: bundle and runtime improvements
    • feat(autoUpdate): allow not passing a floating element
    • Update dependencies: @floating-ui/utils@0.2.11, @floating-ui/core@1.7.5

    1.7.5

    Patch Changes

    • Update dependencies: @floating-ui/core@1.7.4

    1.7.4

    Patch Changes

    • fix(getViewportRect): account for space left by scrollbar-gutter: stable

    1.7.3

    Patch Changes

    • Update dependencies: @floating-ui/core@1.7.3

    1.7.2

    Patch Changes

    ... (truncated)

    Commits
    • 12d9473 chore: version packages (#3480)
    • ad0a73f fix(getViewportRect): account for scrollbar-gutter: stable both-edges reser...
    • 9887c96 fix(types): restore bivariant parameters for optional callbacks
    • 28bc9c1 fix(autoUpdate): avoid duplicate update on window resize
    • 5976f20 test(dom): run unit tests in vitest browser mode
    • 705a03c fix(platform): support virtual elements without getClientRects in inline() (#...
    • 3785f3b feat: add layoutViewport string option to rootBoundary (#3486)
    • 0d0e88e fix(inline): no-op on empty client rects and detect RTL disjoined line rects ...
    • 73c1f76 fix(types): support exactOptionalPropertyTypes (#3456)
    • cd58dd2 fix(getClippingRect): correct clipping-ancestor filtering for fixed-position ...
    • Additional commits viewable in compare view
    Maintainer changes

    This version was pushed to npm by GitHub Actions, a new releaser for @​floating-ui/dom since your current version.


    Updates @napi-rs/simple-git from 0.1.19 to 1.1.0

    Release notes

    Sourced from @​napi-rs/simple-git's releases.

    v1.1.0

    What's Changed

    Full Changelog: Brooooooklyn/simple-git@v1.0.0...v1.1.0

    v1.0.0

    What's Changed

    ... (truncated)

    Commits
    • 3b8e55c 1.1.0
    • e580290 fix(deps): update void to v0.10.6 (#153)
    • 659d5ca feat: add created (first-add commit) to FileModification (#152)
    • 3ca64c5 chore(deps): update dorny/paths-filter action to v4 (#150)
    • 9b5a48b fix(deps): update dependency void to v0.10.5 (#151)
    • 723f6b3 chore: move renovate.json
    • 4ca5860 chore: fix yarn and renovate config
    • 638b632 fix(deps): update dependency @​void/react to v0.10.5 (#148)
    • 8300a3f fix(deps): update dependency @​void/md to v0.10.5 (#147)
    • 6881589 feat: simple-git.napi.rs website (landing + docs + Cloudflare deploy) (#146)
    • Additional commits viewable in compare view
    Maintainer changes

    This version was pushed to npm by GitHub Actions, a new releaser for @​napi-rs/simple-git since your current version.


    Updates chalk from 5.4.1 to 6.0.0

    Release notes

    Sourced from chalk's releases.

    v6.0.0

    Breaking

    • Require Node.js 22 8a94e0e

    Improvements

    • Add underline styles and underline colors (#689) 4c304dd
    • Improve performance 5729845 fa5cff2

    Fixes

    • Treat a numeric FORCE_COLOR as an exact level (#688) e912931
    • Downsample ansi256() and bgAnsi256() to 16 colors at level 1 (#687) ff549c5

    chalk/chalk@v5.6.2...v6.0.0

    v5.6.2

    v5.6.0

    • Make WezTerm terminal use true color a8f5bf7

    chalk/chalk@v5.5.0...v5.6.0

    v5.5.0

    • Make Ghostty terminal use true color (#653) 79ee2d3

    chalk/chalk@v5.4.1...v5.5.0

    Commits

    Updates chokidar from 4.0.3 to 5.0.0

    Release notes

    Sourced from chokidar's releases.

    5.0.0

    • Make the package ESM-only. Reduces on-disk package size from ~150kb to ~80kb
    • Increase minimum node.js version to v20.19. The versions starting from it support loading esm files from cjs
    • fix: Make types more precise paulmillr/chokidar#1424
    • perf: re-use double slash regex paulmillr/chokidar#1435
    • Update readdirp to ESM-only v5
    • Lots of minor improvements in tests
    • Increase security of NPM releases. Switch to token-less Trusted Publishing, with help of jsbt
    • Switch compilation mode to isolatedDeclaration-based typescript for simplified auto-generated docs

    New Contributors

    Full Changelog: paulmillr/chokidar@4.0.3...5.0.0

    Commits
    Maintainer changes

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


    Updates esbuild-sass-plugin from 3.3.1 to 3.7.0

    Release notes

    Sourced from esbuild-sass-plugin's releases.

    v3.7.0 Hasta la vista

    v3.5.0

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

    Commits

    Updates flexsearch from 0.7.43 to 0.8.212

    Release notes

    Sourced from flexsearch's releases.

    v0.8.2

    • Config-Serialized Query Caches, Improved caching strategy for Document indexes and Resolver
    • Resolver Async Processing Workflow (including Queuing)
    • Extended Resolver Support: Worker, Persistent, Cache
    • Extended Result Highlighting: Boundaries, Ellipsis, Alignment
    • Improved TypeScript Typings
    • Improved Stemmer Handling
    • Improved Result Highlighting
    • Use multi-language charset normalization as the default Encoder
    • Simplified charset support for multi-language content
    • Charset renamed LatinExact => Exact, LatinDefault => Default and LatinSimple => Normalize, these are universal charset presets for any languages
    • Charset ArabicDefault and CyrillicDefault was removed, they are fully covered by the default universal charset presets
    • Charset Charset.CjkDefault was renamed to Charset.CJK

    v0.8.1

    • Resolver Support for Documents
    • Asynchronous Runtime Balancer, new option priority
    • Export/Import Worker Indexes + Document Worker, new extern config options export and import
    • Improved interoperability of the different build packages, including source folder
    • Support custom filter function for encoder (stop-word filter)

    v0.8.0

    • Persistent indexes support for: IndexedDB (Browser), Redis, SQLite, Postgres, MongoDB, Clickhouse
    • Enhanced language customization via the new Encoder class
    • Result Highlighting
    • Query performance achieve results up to 4.5 times faster compared to the previous generation v0.7.x by also improving the quality of results
    • Enhanced support for larger indexes or larger result sets
    • Improved offset and limit processing achieve up to 100 times faster traversal performance through large datasets
    • Support for larger In-Memory index with extended key size (the defaults maximum keystore limit is: 2^24)
    • Greatly enhanced performance of the whole text encoding pipeline
    • Improved indexing of numeric content (Triplets)
    • Intermediate result sets and Resolver
    • Basic Resolver: and, or, xor, not, limit, offset, boost, resolve
    • Improved charset collection
    • New charset preset soundex which further reduces memory consumption by also increasing "fuzziness"
    • Performance gain when polling tasks to the index by using "Event-Loop-Caches"
    • Up to 100 times faster deletion/replacement when not using the additional "fastupdate" register
    • Regex Pre-Compilation (transforms hundreds of regex rules into just a few)
    • Extended support for multiple tags (DocumentIndex)
    • Custom Fields ("Virtual Fields")
    • Custom Filter
    • Custom Score Function
    • Added French language preset (stop-word filter, stemmer)
    • Enhanced Worker Support
    • Export / Import index in chunks
    • Improved Build System + Bundler (Supported: CommonJS, ESM, Global Namespace), also the import of language packs are now supported for Node.js
    • Full covering index.d.ts type definitions
    • Fast-Boot Serialization optimized for Server-Side-Rendering (PHP, Python, Ruby, Rust, Java, Go, Node.js, ...)
    Changelog

    Sourced from flexsearch's changelog.

    Changelog

    Current Version

    • Calling index.clear() on a persistent Index does not stack to the task queue by default (which executes on commit), instead it will execute immediately and return a Promise
    • Added new tokenizer tolerant, inherits from strict but also matches simple typos like missing letters and swapped letters
    • Improved Redis Cleanup
    • Resolver: Support Result Highlighting

    v0.8.2

    • Config-Serialized Query Caches, Improved caching strategy for Document indexes and Resolver
    • Resolver Async Processing Workflow (including Queuing)
    • Extended Resolver Support: Worker, Persistent, Cache
    • Extended Result Highlighting: Boundaries, Ellipsis, Alignment
    • Improved TypeScript Typings
    • Improved Stemmer Handling
    • Improved Result Highlighting
    • Use multi-language charset normalization as the default Encoder
    • Simplified charset support for multi-language content
    • Charset renamed LatinExact => Exact, LatinDefault => Default and LatinSimple => Normalize, these are universal charset presets for any languages
    • Charset ArabicDefault and CyrillicDefault was removed, they are fully covered by the default universal charset presets
    • Charset Charset.CjkDefault was renamed to Charset.CJK

    v0.8.1

    • Resolver Support for Documents
    • Asynchronous Runtime Balancer, new option priority
    • Export/Import Worker Indexes + Document Worker, new extern config options export and import
    • Improved interoperability of the different build packages, including source folder
    • Support custom filter function for encoder (stop-word filter)

    v0.8.0

    • Persistent indexes support for: IndexedDB (Browser), Redis, SQLite, Postgres, MongoDB, Clickhouse
    • Enhanced language customization via the new Encoder class
    • Result Highlighting
    • Query performance achieve results up to 4.5 times faster compared to the previous generation v0.7.x by also improving the quality of results
    • Enhanced support for larger indexes or larger result sets
    • Improved offset and limit processing achieve up to 100 times faster traversal performance through large datasets
    • Support for larger In-Memory index with extended key size (the defaults maximum keystore limit is: 2^24)
    • Greatly enhanced performance of the whole text encoding pipeline
    • Improved indexing of numeric content (Triplets)
    • Intermediate result sets and Resolver
    • Basic Resolver: and, or, xor, not, limit, offset, boost, resolve
    • Improved charset collection
    • New charset preset soundex which further reduces memory consumption by also increasing "fuzziness"
    • Performance gain when polling tasks to the index by using "Event-Loop-Caches"
    • Up to 100 times faster deletion/replacement when not using the additional "fastupdate" register
    • Regex Pre-Compilation (transforms hundreds of regex rules into just a few)

    ... (truncated)

    Commits

    Updates globby from 14.0.2 to 16.2.4

    Release notes

    Sourced from globby's releases.

    v16.2.4

    • Fix ignore option disabling the gitignore option 19e1fce

    sindresorhus/globby@v16.2.3...v16.2.4

    v16.2.3

    • Fix backslash-escaped .gitignore rules 5775ffb

    sindresorhus/globby@v16.2.2...v16.2.3

    v16.2.2

    • Fix: Do not enumerate ignored directories with gitignore option 8bf8f54

    sindresorhus/globby@v16.2.1...v16.2.2

    v16.2.1

    • Fix gitignore ignoring an entire checkout under an anchored ancestor path (#277) e7bd988

    sindresorhus/globby@v16.2.0...v16.2.1

    v16.2.0


    sindresorhus/globby@v16.1.1...v16.2.0

    v16.1.1

    • Fix negation patterns with absolute filesystem paths 72e9916

    sindresorhus/globby@v16.1.0...v16.1.1

    v16.1.0


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

    ... (truncated)

    Commits

    Updates hast-util-to-html from 9.0.4 to 9.0.5

    Release notes

    Sourced from hast-util-to-html's releases.

    9.0.5

    • 329625e Update property-information

    Full Changelog: syntax-tree/hast-util-to-html@9.0.4...9.0.5

    Commits

    Updates hast-util-to-jsx-runtime from 2.3.2 to 2.3.6

    Release notes

    Sourced from hast-util-to-jsx-runtime's releases.

    2.3.6

    Full Changelog: syntax-tree/hast-util-to-jsx-runtime@2.3.5...2.3.6

    2.3.5

    • d25e00a Remove no longer working type hack

    Full Changelog: syntax-tree/hast-util-to-jsx-runtime@2.3.4...2.3.5

    2.3.4

    ...

    Description has been truncated

    @dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 31, 2026
    …y with 40 updates
    
    Bumps the production-dependencies group with 38 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@clack/prompts](https://github.com/bombshell-dev/clack/tree/HEAD/packages/prompts) | `0.9.1` | `1.8.0` |
    | [@floating-ui/dom](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/dom) | `1.6.13` | `1.8.0` |
    | [@napi-rs/simple-git](https://github.com/Brooooooklyn/simple-git) | `0.1.19` | `1.1.0` |
    | [chalk](https://github.com/chalk/chalk) | `5.4.1` | `6.0.0` |
    | [chokidar](https://github.com/paulmillr/chokidar) | `4.0.3` | `5.0.0` |
    | [esbuild-sass-plugin](https://github.com/glromeo/esbuild-sass-plugin) | `3.3.1` | `3.7.0` |
    | [flexsearch](https://github.com/nextapps-de/flexsearch) | `0.7.43` | `0.8.212` |
    | [globby](https://github.com/sindresorhus/globby) | `14.0.2` | `16.2.4` |
    | [hast-util-to-html](https://github.com/syntax-tree/hast-util-to-html) | `9.0.4` | `9.0.5` |
    | [hast-util-to-jsx-runtime](https://github.com/syntax-tree/hast-util-to-jsx-runtime) | `2.3.2` | `2.3.6` |
    | [is-absolute-url](https://github.com/sindresorhus/is-absolute-url) | `4.0.1` | `5.0.0` |
    | [js-yaml](https://github.com/nodeca/js-yaml) | `4.1.0` | `5.4.1` |
    | [lightningcss](https://github.com/parcel-bundler/lightningcss) | `1.29.1` | `1.33.0` |
    | [mdast-util-to-hast](https://github.com/syntax-tree/mdast-util-to-hast) | `13.2.0` | `13.2.1` |
    | [pixi.js](https://github.com/pixijs/pixijs) | `8.6.6` | `8.20.1` |
    | [preact](https://github.com/preactjs/preact) | `10.25.4` | `10.29.8` |
    | [preact-render-to-string](https://github.com/preactjs/preact-render-to-string) | `6.5.12` | `6.7.0` |
    | [pretty-bytes](https://github.com/sindresorhus/pretty-bytes) | `6.1.1` | `7.1.3` |
    | [rehype-citation](https://github.com/timlrx/rehype-citation) | `2.2.2` | `2.3.2` |
    | [rehype-mathjax](https://github.com/remarkjs/remark-math) | `6.0.0` | `7.1.0` |
    | [rehype-pretty-code](https://github.com/rehype-pretty/rehype-pretty-code/tree/HEAD/packages/core) | `0.14.0` | `0.14.5` |
    | [remark-gfm](https://github.com/remarkjs/remark-gfm) | `4.0.0` | `4.0.1` |
    | [remark-rehype](https://github.com/remarkjs/remark-rehype) | `11.1.1` | `11.1.2` |
    | [remark-smartypants](https://github.com/silvenon/remark-smartypants) | `3.0.2` | `3.0.3` |
    | [rimraf](https://github.com/isaacs/rimraf) | `6.0.1` | `6.1.3` |
    | [serve-handler](https://github.com/vercel/serve-handler) | `6.1.6` | `6.1.7` |
    | [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki) | `1.26.1` | `4.4.3` |
    | [toml](https://github.com/BinaryMuse/toml-node) | `3.0.0` | `5.0.0` |
    | [workerpool](https://github.com/josdejong/workerpool) | `9.2.0` | `10.0.3` |
    | [ws](https://github.com/websockets/ws) | `8.18.0` | `8.21.3` |
    | [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) | `8.5.13` | `8.18.1` |
    | [yargs](https://github.com/yargs/yargs) | `17.7.2` | `18.1.0` |
    | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.5` | `26.5.1` |
    | [@types/yargs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/yargs) | `17.0.33` | `17.0.35` |
    | [esbuild](https://github.com/evanw/esbuild) | `0.24.2` | `0.28.2` |
    | [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.9.6` |
    | [tsx](https://github.com/privatenumber/tsx) | `4.19.2` | `4.23.13` |
    | [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `7.0.2` |
    
    
    
    Updates `@clack/prompts` from 0.9.1 to 1.8.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.8.0/packages/prompts)
    
    Updates `@floating-ui/dom` from 1.6.13 to 1.8.0
    - [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/@floating-ui/dom@1.8.0/packages/dom)
    
    Updates `@napi-rs/simple-git` from 0.1.19 to 1.1.0
    - [Release notes](https://github.com/Brooooooklyn/simple-git/releases)
    - [Commits](Brooooooklyn/simple-git@v0.1.19...v1.1.0)
    
    Updates `chalk` from 5.4.1 to 6.0.0
    - [Release notes](https://github.com/chalk/chalk/releases)
    - [Commits](chalk/chalk@v5.4.1...v6.0.0)
    
    Updates `chokidar` from 4.0.3 to 5.0.0
    - [Release notes](https://github.com/paulmillr/chokidar/releases)
    - [Commits](paulmillr/chokidar@4.0.3...5.0.0)
    
    Updates `esbuild-sass-plugin` from 3.3.1 to 3.7.0
    - [Release notes](https://github.com/glromeo/esbuild-sass-plugin/releases)
    - [Commits](glromeo/esbuild-sass-plugin@v3.3.1...v3.7.0)
    
    Updates `flexsearch` from 0.7.43 to 0.8.212
    - [Release notes](https://github.com/nextapps-de/flexsearch/releases)
    - [Changelog](https://github.com/nextapps-de/flexsearch/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/nextapps-de/flexsearch/commits)
    
    Updates `globby` from 14.0.2 to 16.2.4
    - [Release notes](https://github.com/sindresorhus/globby/releases)
    - [Commits](sindresorhus/globby@v14.0.2...v16.2.4)
    
    Updates `hast-util-to-html` from 9.0.4 to 9.0.5
    - [Release notes](https://github.com/syntax-tree/hast-util-to-html/releases)
    - [Commits](syntax-tree/hast-util-to-html@9.0.4...9.0.5)
    
    Updates `hast-util-to-jsx-runtime` from 2.3.2 to 2.3.6
    - [Release notes](https://github.com/syntax-tree/hast-util-to-jsx-runtime/releases)
    - [Commits](syntax-tree/hast-util-to-jsx-runtime@2.3.2...2.3.6)
    
    Updates `is-absolute-url` from 4.0.1 to 5.0.0
    - [Release notes](https://github.com/sindresorhus/is-absolute-url/releases)
    - [Commits](sindresorhus/is-absolute-url@v4.0.1...v5.0.0)
    
    Updates `js-yaml` from 4.1.0 to 5.4.1
    - [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
    - [Commits](nodeca/js-yaml@4.1.0...5.4.1)
    
    Updates `lightningcss` from 1.29.1 to 1.33.0
    - [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
    - [Commits](https://github.com/parcel-bundler/lightningcss/commits/v1.33.0)
    
    Updates `mdast-util-to-hast` from 13.2.0 to 13.2.1
    - [Release notes](https://github.com/syntax-tree/mdast-util-to-hast/releases)
    - [Commits](syntax-tree/mdast-util-to-hast@13.2.0...13.2.1)
    
    Updates `pixi.js` from 8.6.6 to 8.20.1
    - [Release notes](https://github.com/pixijs/pixijs/releases)
    - [Commits](pixijs/pixijs@v8.6.6...v8.20.1)
    
    Updates `preact` from 10.25.4 to 10.29.8
    - [Release notes](https://github.com/preactjs/preact/releases)
    - [Commits](preactjs/preact@10.25.4...10.29.8)
    
    Updates `preact-render-to-string` from 6.5.12 to 6.7.0
    - [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.5.12...v6.7.0)
    
    Updates `pretty-bytes` from 6.1.1 to 7.1.3
    - [Release notes](https://github.com/sindresorhus/pretty-bytes/releases)
    - [Commits](sindresorhus/pretty-bytes@v6.1.1...v7.1.3)
    
    Updates `rehype-citation` from 2.2.2 to 2.3.2
    - [Release notes](https://github.com/timlrx/rehype-citation/releases)
    - [Commits](timlrx/rehype-citation@v2.2.2...v2.3.2)
    
    Updates `rehype-mathjax` from 6.0.0 to 7.1.0
    - [Release notes](https://github.com/remarkjs/remark-math/releases)
    - [Commits](https://github.com/remarkjs/remark-math/compare/rehype-mathjax@6.0.0...rehype-mathjax@7.1.0)
    
    Updates `rehype-pretty-code` from 0.14.0 to 0.14.5
    - [Release notes](https://github.com/rehype-pretty/rehype-pretty-code/releases)
    - [Changelog](https://github.com/rehype-pretty/rehype-pretty-code/blob/master/packages/core/CHANGELOG.md)
    - [Commits](https://github.com/rehype-pretty/rehype-pretty-code/commits/rehype-pretty-code@0.14.5/packages/core)
    
    Updates `remark-gfm` from 4.0.0 to 4.0.1
    - [Release notes](https://github.com/remarkjs/remark-gfm/releases)
    - [Commits](remarkjs/remark-gfm@4.0.0...4.0.1)
    
    Updates `remark-rehype` from 11.1.1 to 11.1.2
    - [Release notes](https://github.com/remarkjs/remark-rehype/releases)
    - [Commits](remarkjs/remark-rehype@11.1.1...11.1.2)
    
    Updates `remark-smartypants` from 3.0.2 to 3.0.3
    - [Release notes](https://github.com/silvenon/remark-smartypants/releases)
    - [Commits](silvenon/remark-smartypants@v3.0.2...v3.0.3)
    
    Updates `rimraf` from 6.0.1 to 6.1.3
    - [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
    - [Commits](isaacs/rimraf@v6.0.1...v6.1.3)
    
    Updates `serve-handler` from 6.1.6 to 6.1.7
    - [Release notes](https://github.com/vercel/serve-handler/releases)
    - [Commits](vercel/serve-handler@6.1.6...6.1.7)
    
    Updates `shiki` from 1.26.1 to 4.4.3
    - [Release notes](https://github.com/shikijs/shiki/releases)
    - [Commits](https://github.com/shikijs/shiki/commits/v4.4.3/packages/shiki)
    
    Updates `toml` from 3.0.0 to 5.0.0
    - [Changelog](https://github.com/BinaryMuse/toml-node/blob/master/CHANGELOG.md)
    - [Commits](BinaryMuse/toml-node@v3.0.0...v5.0.0)
    
    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 `workerpool` from 9.2.0 to 10.0.3
    - [Changelog](https://github.com/josdejong/workerpool/blob/master/HISTORY.md)
    - [Commits](josdejong/workerpool@v9.2.0...v10.0.3)
    
    Updates `ws` from 8.18.0 to 8.21.3
    - [Release notes](https://github.com/websockets/ws/releases)
    - [Commits](websockets/ws@8.18.0...8.21.3)
    
    Updates `@types/ws` from 8.5.13 to 8.18.1
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws)
    
    Updates `yargs` from 17.7.2 to 18.1.0
    - [Release notes](https://github.com/yargs/yargs/releases)
    - [Changelog](https://github.com/yargs/yargs/blob/main/CHANGELOG.md)
    - [Commits](yargs/yargs@v17.7.2...v18.1.0)
    
    Updates `@types/hast` from 3.0.4 to 3.0.5
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/hast)
    
    Updates `@types/node` from 22.10.5 to 26.5.1
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
    
    Updates `@types/ws` from 8.5.13 to 8.18.1
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws)
    
    Updates `@types/yargs` from 17.0.33 to 17.0.35
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/yargs)
    
    Updates `esbuild` from 0.24.2 to 0.28.2
    - [Release notes](https://github.com/evanw/esbuild/releases)
    - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md)
    - [Commits](evanw/esbuild@v0.24.2...v0.28.2)
    
    Updates `prettier` from 3.4.2 to 3.9.6
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.4.2...3.9.6)
    
    Updates `tsx` from 4.19.2 to 4.23.13
    - [Release notes](https://github.com/privatenumber/tsx/releases)
    - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
    - [Commits](privatenumber/tsx@v4.19.2...v4.23.13)
    
    Updates `typescript` from 5.7.3 to 7.0.2
    - [Release notes](https://github.com/microsoft/TypeScript/releases)
    - [Commits](microsoft/TypeScript@v5.7.3...v7.0.2)
    
    ---
    updated-dependencies:
    - dependency-name: "@clack/prompts"
      dependency-version: 1.7.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: "@floating-ui/dom"
      dependency-version: 1.8.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: "@napi-rs/simple-git"
      dependency-version: 1.1.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: "@types/hast"
      dependency-version: 3.0.5
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: "@types/node"
      dependency-version: 26.4.0
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: "@types/ws"
      dependency-version: 8.18.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: "@types/ws"
      dependency-version: 8.18.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: "@types/yargs"
      dependency-version: 17.0.35
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: chalk
      dependency-version: 6.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: chokidar
      dependency-version: 5.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: esbuild
      dependency-version: 0.28.2
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: esbuild-sass-plugin
      dependency-version: 3.7.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: flexsearch
      dependency-version: 0.8.212
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: globby
      dependency-version: 16.2.4
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: hast-util-to-html
      dependency-version: 9.0.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: hast-util-to-jsx-runtime
      dependency-version: 2.3.6
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: is-absolute-url
      dependency-version: 5.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: js-yaml
      dependency-version: 5.4.1
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: lightningcss
      dependency-version: 1.33.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: mdast-util-to-hast
      dependency-version: 13.2.1
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: pixi.js
      dependency-version: 8.20.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: preact
      dependency-version: 10.29.8
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: preact-render-to-string
      dependency-version: 6.7.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: prettier
      dependency-version: 3.9.6
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: pretty-bytes
      dependency-version: 7.1.1
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: rehype-citation
      dependency-version: 2.3.2
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: rehype-mathjax
      dependency-version: 7.1.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: rehype-pretty-code
      dependency-version: 0.14.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: remark-gfm
      dependency-version: 4.0.1
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: remark-rehype
      dependency-version: 11.1.2
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: remark-smartypants
      dependency-version: 3.0.3
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: rimraf
      dependency-version: 6.1.3
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: serve-handler
      dependency-version: 6.1.7
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: shiki
      dependency-version: 4.4.3
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: toml
      dependency-version: 5.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: tsx
      dependency-version: 4.23.12
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: typescript
      dependency-version: 7.0.2
      dependency-type: direct:development
      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: workerpool
      dependency-version: 10.0.3
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: ws
      dependency-version: 8.21.3
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: yargs
      dependency-version: 18.1.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot dependabot Bot changed the title chore(deps): bump the production-dependencies group with 40 updates chore(deps): bump the production-dependencies group across 1 directory with 40 updates Sep 14, 2026
    @dependabot
    dependabot Bot force-pushed the dependabot/npm_and_yarn/production-dependencies-dcdf8374ba branch from 913450f to c340aa7 Compare September 14, 2026 04:14

    This branch has not been deployed

    No deployments
    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