Skip to content

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

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

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

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 28, 2026

Copy link
Copy Markdown
Contributor

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

Package From To
@clack/prompts 1.4.0 1.6.0
@myriaddreamin/rehype-typst 0.6.0 0.7.0
js-yaml 4.1.1 5.2.0
pixi.js 8.18.1 8.19.0
preact 10.29.2 10.29.3
sharp 0.34.5 0.35.2
shiki 4.1.0 4.3.0
@types/node 25.9.1 26.0.1
esbuild 0.28.0 0.28.1
prettier 3.8.3 3.9.1
tsx 4.22.3 4.22.4

Updates @clack/prompts from 1.4.0 to 1.6.0

Release notes

Sourced from @​clack/prompts's releases.

@​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.

  • Patch Changes

    @​clack/prompts@​1.5.1

    Patch Changes

    @​clack/prompts@​1.5.0

    Minor Changes

    • #543 83428ac Thanks @​florian-lefebvre! - Adds support for Standard Schema validation

      Prompts accept an optional validate() function to validate user input. While a function provides more flexibility and customization over your validation, it can be a bit verbose. To help solve this, there are libraries that provide schema-based validation to make shorthand and type-strict validation substantially easier.

      Libraries following the Standard Schema specification are now natively supported. For example, using Arktype:

      import { text } from '@clack/prompts';
      import { type } from 'arktype';
      const name = await text({
      message: 'Enter your email',

    ... (truncated)

    Changelog

    Sourced from @​clack/prompts's changelog.

    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.

  • Patch Changes

    1.5.1

    Patch Changes

    1.5.0

    Minor Changes

    • #543 83428ac Thanks @​florian-lefebvre! - Adds support for Standard Schema validation

      Prompts accept an optional validate() function to validate user input. While a function provides more flexibility and customization over your validation, it can be a bit verbose. To help solve this, there are libraries that provide schema-based validation to make shorthand and type-strict validation substantially easier.

      Libraries following the Standard Schema specification are now natively supported. For example, using Arktype:

      import { text } from '@clack/prompts';
      import { type } from 'arktype';

    ... (truncated)

    Commits
    • 0e70056 [ci] release (#562)
    • f87933f fix(prompts): do not dim note contents (#568)
    • cc6aab5 feat(prompts): add instructions footer for select, multi-select & `group-...
    • 02ae191 [ci] release (#549)
    • 56e9d67 docs: add jsdoc for date, limit-options, and messages (#546)
    • 030ba4d [ci] release (#539)
    • 83428ac feat: standard schema for validation (#543)
    • adb6af9 docs: add jsdoc for box, group, and group-multi-select (#542)
    • 3170ed9 docs: add jsdoc for autocomplete, confirm, and path prompts (#540)
    • 3dcb31a fix: spaces and uppercase characters in multiline input (#534)
    • See full diff in compare view

    Updates @myriaddreamin/rehype-typst from 0.6.0 to 0.7.0

    Release notes

    Sourced from @​myriaddreamin/rehype-typst's releases.

    v0.7.0

    Packages

    Compiler

    rustdoc-typst-demo (New)

    Package: typst.ts

    Package: typst.react

    Package: typst.vue3

    Package: typst.svelte (New)

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by GitHub Actions, a new releaser for @​myriaddreamin/rehype-typst since your current version.


    Updates js-yaml from 4.1.1 to 5.2.0

    Changelog

    Sourced from js-yaml's changelog.

    [5.2.0] - 2026-06-26

    Added

    • Added maxTotalMergeKeys (10000) loader option to limit the total number of keys processed by YAML merge (<<) across one load() / loadAll() call.
    • Added maxAliases (-1) loader option to limit the number of YAML aliases per document.

    Removed

    • maxMergeSeqLength replaced with maxTotalMergeKeys for limiting YAML merge processing.

    Fixed

    • Round-trip of integers with exponential form (>= 1e21)

    [5.1.0] - 2026-06-23

    Added

    • Collection tags can finalize an incrementally populated carrier into a different result value.

    Changed

    • [breaking] quoteStyle now selects the preferred quote style; use the restored forceQuotes option to force quoting non-key strings.

    [5.0.0] - 2026-06-20

    Added

    • Added named exports for schemas, tags, parser events and AST utilities.
    • Reworked JSON_SCHEMA and CORE_SCHEMA with spec-compliant scalar resolution rules, and added YAML11_SCHEMA.
    • Added realMapTag for lossless mappings with non-string and complex keys. Object-based mappings now reject complex keys instead of stringifying them.
    • Added dump() transform option for changing the generated AST before rendering.
    • Added dump() options seqInlineFirst, flowBracketPadding, flowSkipCommaSpace, flowSkipColonSpace, quoteFlowKeys, quoteStyle and tagBeforeAnchor.
    • Added formal data layers (events and AST) for modular data pipelines.
      • Added low-level parser (to events), presenter and visitor APIs.
    • Added the YAML Test Suite to the test set.

    Changed

    • See the migration guide for upgrade notes.
    • Rewritten in TypeScript and reorganized the public API around flat named exports.
    • Reduced the set of exported schemas:
      • YAML 1.2 schemas: CORE_SCHEMA (loader default), JSON_SCHEMA, FAILSAFE_SCHEMA.
      • YAML11_SCHEMA, a combination of all YAML 1.1 tags (YAML 1.1 does not specify a schema, only "types").

    ... (truncated)

    Commits
    • c28ed5e 5.2.0 released
    • 125cd5a Add maxAliases option
    • 3105455 Replace maxMergeSeqLengthoption with maxTotalMergeKeys (more robust)
    • 39d00d6 numbers: Drop boxed numbers support, simplify .identify() checks, clarify rou...
    • eb5cb5b fix: round-trip integers that stringify in exponential notation (#771)
    • 89024c4 Update migration info, close #770
    • f1e45cd 5.1.0 released
    • 53b22be Fix constructor coverage
    • a1eaa2b Fix quote style options and restore forceQuotes
    • 0532e7d Add finalizers for immutable collection tags
    • Additional commits viewable in compare view

    Updates pixi.js from 8.18.1 to 8.19.0

    Release notes

    Sourced from pixi.js's releases.

    v8.19.0

    💾 Download

    Installation:

    npm install pixi.js@8.19.0

    Development Build:

    Production Build:

    Documentation:

    Changed

    pixijs/pixijs@v8.18.1...v8.19.0

    🚨 Behavior Change

    • fix: Container.updateTransform honors zero scale (#12044) by @​Zyie in pixijs/pixijs#12046
      • Container.updateTransform({ scaleX: 0, scaleY: 0 }) previously coerced a zero scale to 1 (the code used opts.scaleX || 1), so passing 0 left the container at full size. It now applies zero scale literally, matching scale.set(0, 0). If you relied on updateTransform ignoring a zero scale, stop passing 0 when you mean full scale.
      const container = new Container();
      container.updateTransform({ scaleX: 0, scaleY: 0 });
      // before: scale coerced to (1, 1) — container stayed full-size
      // after:  scale applied as (0, 0) — container hidden, matching scale.set(0, 0)
    • fix: particle container inherit blend mode by @​DmitriyGolub in pixijs/pixijs#11978
      • ParticleContainer now respects the blend mode inherited from its ancestors. Previously the render pipe read the container's own local blendMode instead of the resolved groupBlendMode, so setting e.g. stage.blendMode = 'add' had no effect on particles. Particles nested under a parent with a non-default blend mode will now render differently (e.g. additive brightening) where they were silently ignored before. A blendMode set directly on the ParticleContainer is unchanged.
    • fix: FillPattern tiling and radial gradient sizing by @​Zyie in pixijs/pixijs#12037
      • FillPattern gains a textureSpace option ('global' | 'local'), while fixing several long-standing pattern/gradient sizing bugs. textureSpace defaults to 'global', so patterns now tile continuously across adjacent shapes instead of remapping per shape; setTransform(matrix) now applies the matrix you pass directly (it previously inverted and rescaled it by the texture size); and textureSpace: 'local' radial gradients now scale to the gradient's outer radius. Existing pattern fills and local radial gradients can render differently.

        If you hand-compensated for the old setTransform behavior (pre-inverting or scaling by texture size), remove that compensation. The legacy positional new FillPattern(texture, repetition) form still works.

      import { Assets, FillPattern, Graphics } from 'pixi.js';
      const texture = await Assets.load('pattern.png');
      // new options-object constructor with explicit textureSpace
      const pattern = new FillPattern({ texture, repetition: 'repeat', textureSpace: 'local' });
      const g = new Graphics().rect(0, 0, 200, 100).fill({ fill: pattern });

    🎁 Added

    ... (truncated)

    Commits
    • d93c5d3 v8.19.0
    • 23fd143 fix: canvas renderer does not round anchor offset when roundPixels is enabled...
    • bdf32bd chore: bundle pixijs-skills and add sync workflow (#12045)
    • b2f8668 feat: add HTML-in-Canvas texture support (#12053)
    • 1d1e44c feat: implement transientAttachment for MSAA RenderTextures for WebGPU (#12050)
    • 765ec7a chore: restrict postMessage origin in playground (#12055)
    • fa49de2 docs: document blend mode resolution inheritance (#12067)
    • b967b5e chore: bump parse-svg-path (#12071)
    • 009e338 chore: update GitHub Actions and npm to latest (#12070)
    • 4b8d253 fix: particle container inherit blend mode (#11978)
    • Additional commits viewable in compare view

    Updates preact from 10.29.2 to 10.29.3

    Release notes

    Sourced from preact's releases.

    10.29.3

    Fixes

    Performance

    Types

    Maintenance

    Commits

    Updates sharp from 0.34.5 to 0.35.2

    Release notes

    Sourced from sharp's releases.

    v0.35.2

    v0.35.2-rc.2

    • TypeScript: Add mediaType to metadata response. #4492

    • Improve WebAssembly fallback detection. #4513

    • Improve code bundler support with stub binaries. #4543

    • Verify GIF effort option is an integer. #4544 @​metsw24-max

    • Verify recomb matrix entries are numbers. #4545 @​metsw24-max

    • TypeScript: Replace namespace with named exports for ESM. #4546

    ... (truncated)

    Commits
    • c9622a3 Release v0.35.2
    • cd4568f Upgrade to sharp-libvips v1.3.1
    • 78390cf Tests: Add font file to prevent font discovery flakiness (#4550)
    • 61210b4 Verify convolve kernel values are numbers (#4549)
    • 1cb27dc Prerelease v0.35.2-rc.2
    • c7606c3 Upgrade to sharp-libvips v1.3.1-rc.0
    • 29d1e9e Prerelease v0.35.2-rc.1
    • bbba0a1 Improve code bundler support with stub binaries
    • ab52866 Bound dilate and erode width to avoid mask-size overflow (#4548)
    • 0f594dd Prerelease v0.35.2-rc.0
    • Additional commits viewable in compare view

    Updates shiki from 4.1.0 to 4.3.0

    Release notes

    Sourced from shiki's releases.

    v4.3.0

       🚀 Features

        View changes on GitHub

    v4.2.0

       🚀 Features

       🐞 Bug Fixes

        View changes on GitHub
    Commits

    Updates @types/node from 25.9.1 to 26.0.1

    Commits

    Updates esbuild from 0.28.0 to 0.28.1

    Release notes

    Sourced from esbuild's releases.

    v0.28.1

    • Disallow \ in local development server HTTP requests (GHSA-g7r4-m6w7-qqqr)

      This release fixes a security issue where HTTP requests to esbuild's local development server could traverse outside of the serve directory on Windows using a \ backslash character. It happened due to the use of Go's path.Clean() function, which only handles Unix-style / characters. HTTP requests with paths containing \ are no longer allowed.

      Thanks to @​dellalibera for reporting this issue.

    • Add integrity checks to the Deno API (GHSA-gv7w-rqvm-qjhr)

      The previous release of esbuild added integrity checks to esbuild's npm install script. This release also adds integrity checks to esbuild's Deno install script. Now esbuild's Deno API will also fail with an error if the downloaded esbuild binary contains something other than the expected content.

      Note that esbuild's Deno API installs from registry.npmjs.org by default, but allows the NPM_CONFIG_REGISTRY environment variable to override this with a custom package registry. This change means that the esbuild executable served by NPM_CONFIG_REGISTRY must now match the expected content.

      Thanks to @​sondt99 for reporting this issue.

    • Avoid inlining using and await using declarations (#4482)

      Previously esbuild's minifier sometimes incorrectly inlined using and await using declarations into subsequent uses of that declaration, which then fails to dispose of the resource correctly. This bug happened because inlining was done for let and const declarations by avoiding doing it for var declarations, which no longer worked when more declaration types were added. Here's an example:

      // Original code
      {
        using x = new Resource()
        x.activate()
      }
      // Old output (with --minify)
      new Resource().activate();
      // New output (with --minify)
      {using e=new Resource;e.activate()}

    • Fix module evaluation when an error is thrown (#4461, #4467)

      If an error is thrown during module evaluation, esbuild previously didn't preserve the state of the module for subsequent module references. This was observable if import() or require() is used to import a module multiple times. The thrown error is supposed to be thrown by every call to import() or require(), not just the first. With this release, esbuild will now throw the same error every time you call import() or require() on a module that throws during its evaluation.

    • Fix some edge cases around the new operator (#4477)

      Previously esbuild incorrectly printed certain edge cases involving complex expressions inside the target of a new expression (specifically an optional chain and/or a tagged template literal). The generated code for the new target was not correctly wrapped with parentheses, and either contained a syntax error or had different semantics. These edge cases have been fixed so that they now correctly wrap the new target in parentheses. Here is an example of some affected code:

      // Original code
      new (foo()`bar`)()
      new (foo()?.bar)()
      // Old output
      new foo()bar();
      new (foo())?.bar();

    ... (truncated)

    Changelog

    Sourced from esbuild's changelog.

    0.28.1

    • Disallow \ in local development server HTTP requests (GHSA-g7r4-m6w7-qqqr)

      This release fixes a security issue where HTTP requests to esbuild's local development server could traverse outside of the serve directory on Windows using a \ backslash character. It happened due to the use of Go's path.Clean() function, which only handles Unix-style / characters. HTTP requests with paths containing \ are no longer allowed.

      Thanks to @​dellalibera for reporting this issue.

    • Add integrity checks to the Deno API (GHSA-gv7w-rqvm-qjhr)

      The previous release of esbuild added integrity checks to esbuild's npm install script. This release also adds integrity checks to esbuild's Deno install script. Now esbuild's Deno API will also fail with an error if the downloaded esbuild binary contains something other than the expected content.

      Note that esbuild's Deno API installs from registry.npmjs.org by default, but allows the NPM_CONFIG_REGISTRY environment variable to override this with a custom package registry. This change means that the esbuild executable served by NPM_CONFIG_REGISTRY must now match the expected content.

      Thanks to @​sondt99 for reporting this issue.

    • Avoid inlining using and await using declarations (#4482)

      Previously esbuild's minifier sometimes incorrectly inlined using and await using declarations into subsequent uses of that declaration, which then fails to dispose of the resource correctly. This bug happened because inlining was done for let and const declarations by avoiding doing it for var declarations, which no longer worked when more declaration types were added. Here's an example:

      // Original code
      {
        using x = new Resource()
        x.activate()
      }
      // Old output (with --minify)
      new Resource().activate();
      // New output (with --minify)
      {using e=new Resource;e.activate()}

    • Fix module evaluation when an error is thrown (#4461, #4467)

      If an error is thrown during module evaluation, esbuild previously didn't preserve the state of the module for subsequent module references. This was observable if import() or require() is used to import a module multiple times. The thrown error is supposed to be thrown by every call to import() or require(), not just the first. With this release, esbuild will now throw the same error every time you call import() or require() on a module that throws during its evaluation.

    • Fix some edge cases around the new operator (#4477)

      Previously esbuild incorrectly printed certain edge cases involving complex expressions inside the target of a new expression (specifically an optional chain and/or a tagged template literal). The generated code for the new target was not correctly wrapped with parentheses, and either contained a syntax error or had different semantics. These edge cases have been fixed so that they now correctly wrap the new target in parentheses. Here is an example of some affected code:

      // Original code
      new (foo()`bar`)()
      new (foo()?.bar)()
      // Old output
      new foo()bar();
      new (foo())?.bar();

    ... (truncated)

    Commits

    Updates prettier from 3.8.3 to 3.9.1

    Release notes

    Sourced from prettier's releases.

    3.9.1

    🔗 Changelog

    3.9.0

    diff

    🔗 Prettier 3.9: Major parser upgrades and Formatting improvements

    3.8.5

    🔗 Changelog

    3.8.4

    🔗 Changelog

    Changelog

    Sourced from prettier's changelog.

    3.9.1

    diff

    CLI: Fix ignored file has been cached incorrectly (#19483 by @​kovsu)

    Bug details prettier/prettier#18016

    3.9.0

    diff

    🔗 Release Notes

    3.8.5

    diff

    Flow: Support readonly as a variance annotation (#19022 by @​marcoww6)

    Flow now accepts readonly as a property variance annotation, equivalent to + (covariant/read-only).

    // Input
    type T = {
      readonly foo: string,
    };
    // Prettier 3.8.4
    SyntaxError
    // Prettier 3.8.5
    type T = {
    readonly foo: string,
    };

    3.8.4

    diff

    Markdown: Fix blank lines between list items and nested sub-lists being removed in Markdown/MDX (#17746 by @​byplayer)

    Prettier was removing blank lines between list items and their nested sub-lists, converting loose lists into tight lists and changing their semantic meaning.

    <!-- Input -->
    - a
    </tr></table> 

    ... (truncated)

    Commits

    Updates tsx from 4.22.3 to 4.22.4

    Release notes

    Sourced from tsx's releases.

    v4.22.4

    4.22.4 (2026-05-31)

    Bug Fixes

    • resolve CommonJS directory requires inside dependencies (#803) (1ce8463)

    This release is also available on:

    Commits

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
    • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
    • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
    • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
    • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
    • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

    …y with 11 updates
    
    Bumps the production-dependencies group with 11 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@clack/prompts](https://github.com/bombshell-dev/clack/tree/HEAD/packages/prompts) | `1.4.0` | `1.6.0` |
    | [@myriaddreamin/rehype-typst](https://github.com/Myriad-Dreamin/typst.ts) | `0.6.0` | `0.7.0` |
    | [js-yaml](https://github.com/nodeca/js-yaml) | `4.1.1` | `5.2.0` |
    | [pixi.js](https://github.com/pixijs/pixijs) | `8.18.1` | `8.19.0` |
    | [preact](https://github.com/preactjs/preact) | `10.29.2` | `10.29.3` |
    | [sharp](https://github.com/lovell/sharp) | `0.34.5` | `0.35.2` |
    | [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki) | `4.1.0` | `4.3.0` |
    | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.9.1` | `26.0.1` |
    | [esbuild](https://github.com/evanw/esbuild) | `0.28.0` | `0.28.1` |
    | [prettier](https://github.com/prettier/prettier) | `3.8.3` | `3.9.1` |
    | [tsx](https://github.com/privatenumber/tsx) | `4.22.3` | `4.22.4` |
    
    
    
    Updates `@clack/prompts` from 1.4.0 to 1.6.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.6.0/packages/prompts)
    
    Updates `@myriaddreamin/rehype-typst` from 0.6.0 to 0.7.0
    - [Release notes](https://github.com/Myriad-Dreamin/typst.ts/releases)
    - [Changelog](https://github.com/Myriad-Dreamin/typst.ts/blob/main/docs/release-workflows.md)
    - [Commits](Myriad-Dreamin/typst.ts@v0.6.0...v0.7.0)
    
    Updates `js-yaml` from 4.1.1 to 5.2.0
    - [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
    - [Commits](nodeca/js-yaml@4.1.1...5.2.0)
    
    Updates `pixi.js` from 8.18.1 to 8.19.0
    - [Release notes](https://github.com/pixijs/pixijs/releases)
    - [Commits](pixijs/pixijs@v8.18.1...v8.19.0)
    
    Updates `preact` from 10.29.2 to 10.29.3
    - [Release notes](https://github.com/preactjs/preact/releases)
    - [Commits](preactjs/preact@10.29.2...10.29.3)
    
    Updates `sharp` from 0.34.5 to 0.35.2
    - [Release notes](https://github.com/lovell/sharp/releases)
    - [Commits](lovell/sharp@v0.34.5...v0.35.2)
    
    Updates `shiki` from 4.1.0 to 4.3.0
    - [Release notes](https://github.com/shikijs/shiki/releases)
    - [Commits](https://github.com/shikijs/shiki/commits/v4.3.0/packages/shiki)
    
    Updates `@types/node` from 25.9.1 to 26.0.1
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
    
    Updates `esbuild` from 0.28.0 to 0.28.1
    - [Release notes](https://github.com/evanw/esbuild/releases)
    - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
    - [Commits](evanw/esbuild@v0.28.0...v0.28.1)
    
    Updates `prettier` from 3.8.3 to 3.9.1
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.8.3...3.9.1)
    
    Updates `tsx` from 4.22.3 to 4.22.4
    - [Release notes](https://github.com/privatenumber/tsx/releases)
    - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
    - [Commits](privatenumber/tsx@v4.22.3...v4.22.4)
    
    ---
    updated-dependencies:
    - dependency-name: "@clack/prompts"
      dependency-version: 1.6.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: "@myriaddreamin/rehype-typst"
      dependency-version: 0.7.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: js-yaml
      dependency-version: 5.2.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: pixi.js
      dependency-version: 8.19.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: preact
      dependency-version: 10.29.3
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: sharp
      dependency-version: 0.35.2
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: shiki
      dependency-version: 4.3.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: "@types/node"
      dependency-version: 26.0.1
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: esbuild
      dependency-version: 0.28.1
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: prettier
      dependency-version: 3.9.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: tsx
      dependency-version: 4.22.4
      dependency-type: direct:development
      update-type: version-update:semver-patch
      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 Jun 28, 2026
    @cloudflare-workers-and-pages

    cloudflare-workers-and-pages Bot commented Jun 28, 2026

    Copy link
    Copy Markdown

    Deploying yuechen-tech-notes with  Cloudflare Pages  Cloudflare Pages

    Latest commit: 8cdb9f0
    Status:🚫  Build failed.

    View logs

    @dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 28, 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