Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 24, 2025

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

Package From To
@astrojs/partytown 2.1.3 2.1.4
@astrojs/starlight 0.30.6 0.32.4
@astrojs/starlight-tailwind 3.0.0 3.0.1
@astrojs/tailwind 5.1.5 6.0.1
@expressive-code/plugin-collapsible-sections 0.38.3 0.40.2
astro 5.1.1 5.5.4
hast-util-select 6.0.3 6.0.4
hastscript 9.0.0 9.0.1
marked 15.0.6 15.0.7
remark-svgbob 1.1.1 2.0.0
starlight-links-validator 0.14.1 0.14.3
tailwindcss 3.4.17 4.0.15
tree-sitter 0.22.1 0.22.4
typescript 5.7.3 5.8.2
lint-staged 15.4.2 15.5.0
playwright 1.50.0 1.51.1
prettier 3.4.2 3.5.3
vitest 2.1.9 3.0.9

Updates @astrojs/partytown from 2.1.3 to 2.1.4

Release notes

Sourced from @​astrojs/partytown's releases.

@​astrojs/partytown@​2.1.4

Patch Changes

  • #13109 5c0e0ea Thanks @​arnottferels! - Adds support for config.lib, which allows changing the destination of the files:

    export default defineConfig({
    	integrations: [partytown({
    		config: {
    +			lib: '/assets/lib/~partytown/';
    		}
    	})]
    })
Changelog

Sourced from @​astrojs/partytown's changelog.

2.1.4

Patch Changes

  • #13109 5c0e0ea Thanks @​arnottferels! - Adds support for config.lib, which allows changing the destination of the files:

    export default defineConfig({
    	integrations: [partytown({
    		config: {
    +			lib: '/assets/lib/~partytown/';
    		}
    	})]
    })
Commits

Updates @astrojs/starlight from 0.30.6 to 0.32.4

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.32.4

Patch Changes

@​astrojs/starlight@​0.32.3

Patch Changes

@​astrojs/starlight@​0.32.2

Patch Changes

@​astrojs/starlight@​0.32.1

Patch Changes

@​astrojs/starlight@​0.32.0

Minor Changes

  • #2390 f493361 Thanks @​delucis! - Moves route data to Astro.locals instead of passing it down via component props

    ⚠️ Breaking change: Previously, all of Starlight’s templating components, including user or plugin overrides, had access to a data object for the current route via Astro.props. This data is now available as Astro.locals.starlightRoute instead.

    To update, refactor any component overrides you have:

    • Remove imports of @astrojs/starlight/props, which is now deprecated.
    • Update code that accesses Astro.props to use Astro.locals.starlightRoute instead.
    • Remove any spreading of {...Astro.props} into child components, which is no longer required.

    In the following example, a custom override for Starlight’s LastUpdated component is updated for the new style:

    ---
    import Default from '@astrojs/starlight/components/LastUpdated.astro';
    - import type { Props } from '@astrojs/starlight/props';
    
    const { lastUpdated } = Astro.props;
    
    
    const { lastUpdated } = Astro.locals.starlightRoute;

... (truncated)

Changelog

Sourced from @​astrojs/starlight's changelog.

0.32.4

Patch Changes

0.32.3

Patch Changes

0.32.2

Patch Changes

0.32.1

Patch Changes

0.32.0

Minor Changes

  • #2390 f493361 Thanks @​delucis! - Moves route data to Astro.locals instead of passing it down via component props

    ⚠️ Breaking change: Previously, all of Starlight’s templating components, including user or plugin overrides, had access to a data object for the current route via Astro.props. This data is now available as Astro.locals.starlightRoute instead.

    To update, refactor any component overrides you have:

    • Remove imports of @astrojs/starlight/props, which is now deprecated.
    • Update code that accesses Astro.props to use Astro.locals.starlightRoute instead.
    • Remove any spreading of {...Astro.props} into child components, which is no longer required.

    In the following example, a custom override for Starlight’s LastUpdated component is updated for the new style:

    ---

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by matthewp, a new releaser for @​astrojs/starlight since your current version.


Updates @astrojs/starlight-tailwind from 3.0.0 to 3.0.1

Release notes

Sourced from @​astrojs/starlight-tailwind's releases.

@​astrojs/starlight-tailwind@​3.0.1

Patch Changes

Changelog

Sourced from @​astrojs/starlight-tailwind's changelog.

3.0.1

Patch Changes

Commits
Maintainer changes

This version was pushed to npm by matthewp, a new releaser for @​astrojs/starlight-tailwind since your current version.


Updates @astrojs/tailwind from 5.1.5 to 6.0.1

Release notes

Sourced from @​astrojs/tailwind's releases.

@​astrojs/tailwind@​6.0.1

Patch Changes

@​astrojs/tailwind@​6.0.0

Major Changes

  • #13049 2ed4bd9 Thanks @​florian-lefebvre! - Deprecates the integration

    Tailwind CSS now offers a Vite plugin which is the preferred way to use Tailwind 4 in Astro. Please uninstall @astrojs/tailwind and follow the Tailwind documentation for manual installation.

    This updated major version is only provided as a convenience for existing projects until they are able to migrate to the new plugin. It offers no additional functionality and is no longer recommended, but may continue to be used in your projects until it is removed entirely.

Changelog

Sourced from @​astrojs/tailwind's changelog.

6.0.1

Patch Changes

6.0.0

Major Changes

  • #13049 2ed4bd9 Thanks @​florian-lefebvre! - Deprecates the integration

    Tailwind CSS now offers a Vite plugin which is the preferred way to use Tailwind 4 in Astro. Please uninstall @astrojs/tailwind and follow the Tailwind documentation for manual installation.

    This updated major version is only provided as a convenience for existing projects until they are able to migrate to the new plugin. It offers no additional functionality and is no longer recommended, but may continue to be used in your projects until it is removed entirely.

Commits

Updates @expressive-code/plugin-collapsible-sections from 0.38.3 to 0.40.2

Release notes

Sourced from @​expressive-code/plugin-collapsible-sections's releases.

@​expressive-code/plugin-collapsible-sections@​0.40.2

Patch Changes

  • Updated dependencies [1734d73]
    • @​expressive-code/core@​0.40.2

@​expressive-code/plugin-collapsible-sections@​0.40.1

Patch Changes

  • Updated dependencies [ecf6ca1]
    • @​expressive-code/core@​0.40.1

@​expressive-code/plugin-collapsible-sections@​0.40.0

Minor Changes

  • 4eed5d0: Adds new collapseStyle prop to @expressive-code/plugin-collapsible-sections. Thank you @​nerdymomocat!

    The new prop allows selecting one of the following collapsible section styles:

    • github: The default style, similar to the one used by GitHub. A summary line with an expand icon and the default text X collapsed lines is shown. When expanded, the summary line is replaced by the section's code lines. It is not possible to re-collapse the section.
    • collapsible-start: When collapsed, the summary line looks like the github style. However, when expanded, it remains visible above the expanded code lines, making it possible to re-collapse the section.
    • collapsible-end: Same as collapsible-start, but the summary line remains visible below the expanded code lines.
    • collapsible-auto: Automatically selects collapsible-start or collapsible-end based on the location of the collapsible section in the code block. Uses collapsible-start unless the section ends at the bottom of the code block, in which case collapsible-end is used.

Patch Changes

  • @​expressive-code/core@​0.40.0

@​expressive-code/plugin-collapsible-sections@​0.39.0

Patch Changes

  • @​expressive-code/core@​0.39.0
Changelog

Sourced from @​expressive-code/plugin-collapsible-sections's changelog.

0.40.2

Patch Changes

  • Updated dependencies [1734d73]
    • @​expressive-code/core@​0.40.2

0.40.1

Patch Changes

  • Updated dependencies [ecf6ca1]
    • @​expressive-code/core@​0.40.1

0.40.0

Minor Changes

  • 4eed5d0: Adds new collapseStyle prop to @expressive-code/plugin-collapsible-sections. Thank you @​nerdymomocat!

    The new prop allows selecting one of the following collapsible section styles:

    • github: The default style, similar to the one used by GitHub. A summary line with an expand icon and the default text X collapsed lines is shown. When expanded, the summary line is replaced by the section's code lines. It is not possible to re-collapse the section.
    • collapsible-start: When collapsed, the summary line looks like the github style. However, when expanded, it remains visible above the expanded code lines, making it possible to re-collapse the section.
    • collapsible-end: Same as collapsible-start, but the summary line remains visible below the expanded code lines.
    • collapsible-auto: Automatically selects collapsible-start or collapsible-end based on the location of the collapsible section in the code block. Uses collapsible-start unless the section ends at the bottom of the code block, in which case collapsible-end is used.

Patch Changes

  • @​expressive-code/core@​0.40.0

0.39.0

Patch Changes

  • @​expressive-code/core@​0.39.0
Commits

Updates astro from 5.1.1 to 5.5.4

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

  • #13437 013fa87 Thanks @​Vardhaman619! - Handle server.allowedHosts when the value is true without attempting to push it into an array.

  • #13324 ea74336 Thanks @​ematipico! - Upgrade to shiki v3

  • #13372 7783dbf Thanks @​ascorbic! - Fixes a bug that caused some very large data stores to save incomplete data.

  • #13358 8c21663 Thanks @​ematipico! - Adds a new function called insertPageRoute to the Astro Container API.

    The new function is useful when testing routes that, for some business logic, use Astro.rewrite.

    For example, if you have a route /blog/post and for some business decision there's a rewrite to /generic-error, the container API implementation will look like this:

    import Post from '../src/pages/Post.astro';
    import GenericError from '../src/pages/GenericError.astro';
    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    const container = await AstroContainer.create();
    container.insertPageRoute('/generic-error', GenericError);
    const result = await container.renderToString(Post);
    console.log(result); // this should print the response from GenericError.astro

    This new method only works for page routes, which means that endpoints aren't supported.

  • #13426 565583b Thanks @​ascorbic! - Fixes a bug that caused the astro add command to ignore the --yes flag for third-party integrations

  • #13428 9cac9f3 Thanks @​matthewp! - Prevent bad value in x-forwarded-host from crashing request

  • #13432 defad33 Thanks @​P4tt4te! - Fix an issue in the Container API, where the renderToString function doesn't render adequately nested slots when they are components.

  • Updated dependencies [ea74336]:

    • @​astrojs/markdown-remark@​6.3.1

[email protected]

Patch Changes

... (truncated)

Changelog

Sourced from astro's changelog.

5.5.4

Patch Changes

5.5.3

Patch Changes

  • #13437 013fa87 Thanks @​Vardhaman619! - Handle server.allowedHosts when the value is true without attempting to push it into an array.

  • #13324 ea74336 Thanks @​ematipico! - Upgrade to shiki v3

  • #13372 7783dbf Thanks @​ascorbic! - Fixes a bug that caused some very large data stores to save incomplete data.

  • #13358 8c21663 Thanks @​ematipico! - Adds a new function called insertPageRoute to the Astro Container API.

    The new function is useful when testing routes that, for some business logic, use Astro.rewrite.

    For example, if you have a route /blog/post and for some business decision there's a rewrite to /generic-error, the container API implementation will look like this:

    import Post from '../src/pages/Post.astro';
    import GenericError from '../src/pages/GenericError.astro';
    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    const container = await AstroContainer.create();
    container.insertPageRoute('/generic-error', GenericError);
    const result = await container.renderToString(Post);
    console.log(result); // this should print the response from GenericError.astro

    This new method only works for page routes, which means that endpoints aren't supported.

  • #13426 565583b Thanks @​ascorbic! - Fixes a bug that caused the astro add command to ignore the --yes flag for third-party integrations

  • #13428 9cac9f3 Thanks @​matthewp! - Prevent bad value in x-forwarded-host from crashing request

  • #13432 defad33 Thanks @​P4tt4te! - Fix an issue in the Container API, where the renderToString function doesn't render adequately nested slots when they are components.

  • Updated dependencies [ea74336]:

    • @​astrojs/markdown-remark@​6.3.1

... (truncated)

Commits

Updates hast-util-select from 6.0.3 to 6.0.4

Release notes

Sourced from hast-util-select's releases.

6.0.4

  • acd5eb0 Update property-information

Full Changelog: syntax-tree/hast-util-select@6.0.3...6.0.4

Commits

Updates hastscript from 9.0.0 to 9.0.1

Release notes

Sourced from hastscript's releases.

9.0.1

  • 91f71e3 Update property-information

Full Changelog: syntax-tree/hastscript@9.0.0...9.0.1

Commits

Updates marked from 15.0.6 to 15.0.7

Release notes

Sourced from marked's releases.

v15.0.7

15.0.7 (2025-02-10)

Bug Fixes

Commits
  • bf4952f chore: fix pkg repository (#3613)
  • 2b99692 chore(release): 15.0.7 [skip ci]
  • 9ae87de fix: fix table rendered as heading (#3612)
  • a1113e0 chore: Update dingus.js import json (#3611)
  • eb61090 chore(deps-dev): Bump rollup from 4.32.0 to 4.34.1 (#3606)
  • 00576d2 chore(deps-dev): Bump @​markedjs/eslint-config from 1.0.9 to 1.0.10 (#3605)
  • 570450c chore(deps-dev): Bump eslint from 9.18.0 to 9.19.0 (#3600)
  • 5fccfb2 chore(deps-dev): Bump rollup from 4.31.0 to 4.32.0 (#3601)
  • b114f21 chore(deps-dev): Bump undici from 6.19.7 to 6.21.1 (#3596)
  • 29cf001 chore(deps-dev): Bump rollup from 4.30.1 to 4.31.0 (#3595)
  • Additional commits viewable in compare view

Updates remark-svgbob from 1.1.1 to 2.0.0

Updates starlight-links-validator from 0.14.1 to 0.14.3

Release notes

Sourced from starlight-links-validator's releases.

[email protected]

Patch Changes

  • #91 1ef31b8 Thanks @​DaniFoldi! - Moves mdast-util-mdx-jsx package to non-dev dependencies to prevent issues in monorepos with hoisting disabled.

[email protected]

Patch Changes

Changelog

Sourced from starlight-links-validator's changelog.

0.14.3

Patch Changes

  • #91 1ef31b8 Thanks @​DaniFoldi! - Moves mdast-util-mdx-jsx package to non-dev dependencies to prevent issues in monorepos with hoisting disabled.

0.14.2

Patch Changes

Commits

Updates tailwindcss from 3.4.17 to 4.0.15

Release notes

Sourced from tailwindcss's releases.

v4.0.15

Fixed

  • Fix incorrect angle in -bg-conic-* utilities (#17174)
  • Fix border-[12px_4px] being interpreted as a border-color instead of a border-width (#17248)
  • Work around a crash in Safari 16.4 and 16.5 when using the default Preflight styles (#17306)
  • Pre-process \<template lang="…"> in Vue files (#17252)
  • Ensure that all CSS variables used by Preflight are prefixed (#17036)
  • Prevent segfault when loaded in a worker thread on Linux (#17276)
  • Ensure multiple --value(…) or --modifier(…) calls don't delete subsequent declarations (#17273)
  • Fix class extraction followed by ( in Slim (#17278)
  • Export PluginUtils from tailwindcss/plugin for compatibility with v3 (#17299)
  • Remove redundant line-height: initial from Preflight (#15212)
  • Increase Standalone hardware compatibility on macOS x64 builds (#17267)
  • Ensure that the CSS file rebuilds if a new CSS variable is used from templates (#17301)

Changed

  • The --theme(…) function now returns CSS variables from your theme variables unless used inside positions where CSS variables are invalid (e.g. inside @media queries) (#17036)

v4.0.14

Fixed

  • Do not extract candidates with JS string interpolation ${ (#17142)
  • Fix extraction of variants containing . character (#17153)
  • Fix extracting candidates in Clojure/ClojureScript (#17087)

v4.0.13

Fixed

  • Fix Haml pre-processing (#17051)
  • Ensure .node and .wasm files are not scanned for utilities (#17123)
  • Improve performance when scanning JSON files (#17125)
  • Fix extracting candidates containing dots in Haml, Pug, and Slim pre processors (#17094, #17085, #17113)
  • Don't create invalid CSS when encountering a link wrapped in square brackets (#17129)

v4.0.12

Fixed

  • Vite: Fix url(…) rebasing in transitively imported CSS files (#16965)
  • PostCSS: Rebase url(…)s in imported CSS files (#16965)
  • Ensure utilities are sorted based on their actual property order (#16995)
  • Ensure strings in Pug and Slim templates are handled correctly (#17000)
  • Ensure classes between } and { are properly extracted (#17001)
  • Fix razor/cshtml pre-processing (#17027)
  • Ensure extracting candidates from JS embedded in a PHP string works as expected (#17031)

v4.0.11

Fixed

... (truncated)

Changelog

Sourced from tailwindcss's changelog.

[4.0.15] - 2025-03-20

Fixed

  • Fix incorrect angle in -bg-conic-* utilities (#17174)
  • Fix border-[12px_4px] being in...

    Description has been truncated

…18 updates

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

| Package | From | To |
| --- | --- | --- |
| [@astrojs/partytown](https://github.com/withastro/astro/tree/HEAD/packages/integrations/partytown) | `2.1.3` | `2.1.4` |
| [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.30.6` | `0.32.4` |
| [@astrojs/starlight-tailwind](https://github.com/withastro/starlight/tree/HEAD/packages/tailwind) | `3.0.0` | `3.0.1` |
| [@astrojs/tailwind](https://github.com/withastro/astro/tree/HEAD/packages/integrations/tailwind) | `5.1.5` | `6.0.1` |
| [@expressive-code/plugin-collapsible-sections](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/@expressive-code/plugin-collapsible-sections) | `0.38.3` | `0.40.2` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.1.1` | `5.5.4` |
| [hast-util-select](https://github.com/syntax-tree/hast-util-select) | `6.0.3` | `6.0.4` |
| [hastscript](https://github.com/syntax-tree/hastscript) | `9.0.0` | `9.0.1` |
| [marked](https://github.com/markedjs/marked) | `15.0.6` | `15.0.7` |
| remark-svgbob | `1.1.1` | `2.0.0` |
| [starlight-links-validator](https://github.com/HiDeoo/starlight-links-validator/tree/HEAD/packages/starlight-links-validator) | `0.14.1` | `0.14.3` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `3.4.17` | `4.0.15` |
| [tree-sitter](https://github.com/tree-sitter/node-tree-sitter) | `0.22.1` | `0.22.4` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.2` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.4.2` | `15.5.0` |
| [playwright](https://github.com/microsoft/playwright) | `1.50.0` | `1.51.1` |
| [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.5.3` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.9` | `3.0.9` |



Updates `@astrojs/partytown` from 2.1.3 to 2.1.4
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/partytown/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/partytown)

Updates `@astrojs/starlight` from 0.30.6 to 0.32.4
- [Release notes](https://github.com/withastro/starlight/releases)
- [Changelog](https://github.com/withastro/starlight/blob/main/packages/starlight/CHANGELOG.md)
- [Commits](https://github.com/withastro/starlight/commits/@astrojs/[email protected]/packages/starlight)

Updates `@astrojs/starlight-tailwind` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/withastro/starlight/releases)
- [Changelog](https://github.com/withastro/starlight/blob/main/packages/tailwind/CHANGELOG.md)
- [Commits](https://github.com/withastro/starlight/commits/@astrojs/[email protected]/packages/tailwind)

Updates `@astrojs/tailwind` from 5.1.5 to 6.0.1
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/tailwind/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/tailwind)

Updates `@expressive-code/plugin-collapsible-sections` from 0.38.3 to 0.40.2
- [Release notes](https://github.com/expressive-code/expressive-code/releases)
- [Changelog](https://github.com/expressive-code/expressive-code/blob/main/packages/@expressive-code/plugin-collapsible-sections/CHANGELOG.md)
- [Commits](https://github.com/expressive-code/expressive-code/commits/@expressive-code/[email protected]/packages/@expressive-code/plugin-collapsible-sections)

Updates `astro` from 5.1.1 to 5.5.4
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/[email protected]/packages/astro)

Updates `hast-util-select` from 6.0.3 to 6.0.4
- [Release notes](https://github.com/syntax-tree/hast-util-select/releases)
- [Commits](syntax-tree/hast-util-select@6.0.3...6.0.4)

Updates `hastscript` from 9.0.0 to 9.0.1
- [Release notes](https://github.com/syntax-tree/hastscript/releases)
- [Commits](syntax-tree/hastscript@9.0.0...9.0.1)

Updates `marked` from 15.0.6 to 15.0.7
- [Release notes](https://github.com/markedjs/marked/releases)
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json)
- [Commits](markedjs/marked@v15.0.6...v15.0.7)

Updates `remark-svgbob` from 1.1.1 to 2.0.0

Updates `starlight-links-validator` from 0.14.1 to 0.14.3
- [Release notes](https://github.com/HiDeoo/starlight-links-validator/releases)
- [Changelog](https://github.com/HiDeoo/starlight-links-validator/blob/main/packages/starlight-links-validator/CHANGELOG.md)
- [Commits](https://github.com/HiDeoo/starlight-links-validator/commits/[email protected]/packages/starlight-links-validator)

Updates `tailwindcss` from 3.4.17 to 4.0.15
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.0.15/packages/tailwindcss)

Updates `tree-sitter` from 0.22.1 to 0.22.4
- [Release notes](https://github.com/tree-sitter/node-tree-sitter/releases)
- [Commits](tree-sitter/node-tree-sitter@v0.22.1...v0.22.4)

Updates `typescript` from 5.7.3 to 5.8.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.3...v5.8.2)

Updates `lint-staged` from 15.4.2 to 15.5.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.4.2...v15.5.0)

Updates `playwright` from 1.50.0 to 1.51.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.50.0...v1.51.1)

Updates `prettier` from 3.4.2 to 3.5.3
- [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.5.3)

Updates `vitest` from 2.1.9 to 3.0.9
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.9/packages/vitest)

---
updated-dependencies:
- dependency-name: "@astrojs/partytown"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@astrojs/starlight"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@astrojs/starlight-tailwind"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@astrojs/tailwind"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@expressive-code/plugin-collapsible-sections"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: hast-util-select
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: hastscript
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: marked
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: remark-svgbob
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: starlight-links-validator
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: tailwindcss
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: tree-sitter
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: playwright
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 24, 2025
Copy link

cloudflare-workers-and-pages bot commented Mar 24, 2025

Deploying ratatui with  Cloudflare Pages  Cloudflare Pages

Latest commit: e898047
Status:🚫  Build failed.

View logs

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