ratatui-org / ratatui-website

Ratatui Documentation
http://ratatui.rs/
MIT License
95 stars 57 forks source link

chore(deps): bump the npm-dependencies group with 5 updates #646

Closed dependabot[bot] closed 1 week ago

dependabot[bot] commented 1 week ago

Bumps the npm-dependencies group with 5 updates:

Package From To
@astrojs/starlight 0.24.2 0.24.4
astro 4.10.2 4.11.0
typescript 5.4.5 5.5.2
prettier-plugin-svelte 3.2.4 3.2.5
prettier-plugin-tailwindcss 0.6.4 0.6.5

Updates @astrojs/starlight from 0.24.2 to 0.24.4

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.24.4

Patch Changes

@​astrojs/starlight@​0.24.3

Patch Changes

Changelog

Sourced from @​astrojs/starlight's changelog.

0.24.4

Patch Changes

0.24.3

Patch Changes

Commits


Updates astro from 4.10.2 to 4.11.0

Release notes

Sourced from astro's releases.

astro@4.11.0

Minor Changes

  • #11197 4b46bd9 Thanks @​braebo! - Adds ShikiTransformer support to the <Code /> component with a new transformers prop.

    Note that transformers only applies classes and you must provide your own CSS rules to target the elements of your code block.

    ---
    import { transformerNotationFocus } from '@shikijs/transformers';
    import { Code } from 'astro:components';
    

    const code = const foo = 'hello' const bar = ' world' console.log(foo + bar) // [!code focus] ;

    <Code {code} lang="js" transformers={[transformerNotationFocus()]} />

    <style is:global> pre.has-focused .line:not(.focused) { filter: blur(1px); } </style>

  • #11134 9042be0 Thanks @​florian-lefebvre! - Improves the developer experience of the 500.astro file by passing it a new error prop.

    When an error is thrown, the special src/pages/500.astro page now automatically receives the error as a prop. This allows you to display more specific information about the error on a custom 500 page.

    ---
    // src/pages/500.astro
    interface Props {
      error: unknown;
    }
    

    const { error } = Astro.props;

    <div>{error instanceof Error ? error.message : 'Unknown error'}</div>

    If an error occurs rendering this page, your host's default 500 error page will be shown to your visitor in production, and Astro's default error overlay will be shown in development.

Patch Changes

... (truncated)

Changelog

Sourced from astro's changelog.

4.11.0

Minor Changes

  • #11197 4b46bd9 Thanks @​braebo! - Adds ShikiTransformer support to the <Code /> component with a new transformers prop.

    Note that transformers only applies classes and you must provide your own CSS rules to target the elements of your code block.

    ---
    import { transformerNotationFocus } from '@shikijs/transformers';
    import { Code } from 'astro:components';
    

    const code = const foo = 'hello' const bar = ' world' console.log(foo + bar) // [!code focus] ;

    <Code {code} lang="js" transformers={[transformerNotationFocus()]} />

    <style is:global> pre.has-focused .line:not(.focused) { filter: blur(1px); } </style>

  • #11134 9042be0 Thanks @​florian-lefebvre! - Improves the developer experience of the 500.astro file by passing it a new error prop.

    When an error is thrown, the special src/pages/500.astro page now automatically receives the error as a prop. This allows you to display more specific information about the error on a custom 500 page.

    ---
    // src/pages/500.astro
    interface Props {
      error: unknown;
    }
    

    const { error } = Astro.props;

    <div>{error instanceof Error ? error.message : 'Unknown error'}</div>

    If an error occurs rendering this page, your host's default 500 error page will be shown to your visitor in production, and Astro's default error overlay will be shown in development.

Patch Changes

... (truncated)

Commits


Updates typescript from 5.4.5 to 5.5.2

Release notes

Sourced from typescript's releases.

TypeScript 5.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • ce2e60e Update LKG
  • f3b21a2 🤖 Pick PR #58931 (Defer creation of barebonesLibSourc...) into release-5.5 (#...
  • 7b1620b 🤖 Pick PR #58811 (fix(58801): "Move to file" on globa...) into release-5.5 (#...
  • 5367ae1 Bump version to 5.5.2 and LKG
  • 02132e5 🤖 Pick PR #58895 (Fix global when typescript.js loade...) into release-5.5 (#...
  • 45b1e3c 🤖 Pick PR #58872 (Fix declaration emit crash) into release-5.5 (#58874)
  • 17933ee 🤖 Pick PR #58810 (Fixed declaration emit issue relate...) into release-5.5 (#...
  • 552b07e 🤖 Pick PR #58786 (Fixed declaration emit crash relate...) into release-5.5 (#...
  • 39c9eeb Pick #58857 to release-5.5 (#58858)
  • 2b0009c 🤖 Pick PR #58846 (Ensure the updates with crashes rev...) into release-5.5 (#...
  • Additional commits viewable in compare view


Updates prettier-plugin-svelte from 3.2.4 to 3.2.5

Changelog

Sourced from prettier-plugin-svelte's changelog.

3.2.5

  • (fix) Svelte 5: format TypeScript in the template
Commits


Updates prettier-plugin-tailwindcss from 0.6.4 to 0.6.5

Release notes

Sourced from prettier-plugin-tailwindcss's releases.

v0.6.5

  • Only re-apply string escaping when necessary (#295)
Changelog

Sourced from prettier-plugin-tailwindcss's changelog.

[0.6.5] - 2024-06-17

  • Only re-apply string escaping when necessary (#295)
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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
cloudflare-pages[bot] commented 1 week ago

Deploying ratatui with  Cloudflare Pages  Cloudflare Pages

Latest commit: 2a2f4e0
Status: ✅  Deploy successful!
Preview URL: https://0fcbb622.ratatui.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-npm-nffs.ratatui.pages.dev

View logs