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 11 updates #795

Merged
merged 4 commits into from
Dec 16, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 16, 2024

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

Package From To
@astrojs/starlight 0.29.2 0.30.1
@astrojs/starlight-tailwind 2.0.3 3.0.0
astro 4.16.16 5.0.5
marked 15.0.3 15.0.4
starlight-links-validator 0.13.3 0.13.4
tailwindcss 3.4.15 3.4.16
lint-staged 15.2.10 15.2.11
playwright 1.49.0 1.49.1
prettier 3.4.1 3.4.2
vitest 2.1.7 2.1.8

Updates @astrojs/starlight from 0.29.2 to 0.30.1

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.30.1

Patch Changes

  • #2688 5c6996c Thanks @​HiDeoo! - Fixes an issue with autogenerated sidebars when using Starlight with Astro's new Content Layer API where group names would be sluggified.

@​astrojs/starlight@​0.30.0

Minor Changes

  • #2612 8d5a4e8 Thanks @​HiDeoo! - Adds support for Astro v5, drops support for Astro v4.

    Upgrade Astro and dependencies

    ⚠️ BREAKING CHANGE: Astro v4 is no longer supported. Make sure you update Astro and any other official integrations at the same time as updating Starlight:

    npx @astrojs/upgrade

    Community Starlight plugins and Astro integrations may also need to be manually updated to work with Astro v5. If you encounter any issues, please reach out to the plugin or integration author to see if it is a known issue or if an updated version is being worked on.

    Update your collections

    ⚠️ BREAKING CHANGE: Starlight's internal content collections, which organize, validate, and render your content, have been updated to use Astro's new Content Layer API and require configuration changes in your project.

    1. Move the content config file. This file no longer lives within the src/content/config.ts folder and should now exist at src/content.config.ts.

    2. Edit the collection definition(s). To update the docs collection, a loader is now required:

       // src/content.config.ts
       import { defineCollection } from "astro:content";
      +import { docsLoader } from "@astrojs/starlight/loaders";
       import { docsSchema } from "@astrojs/starlight/schema";
      export const collections = {
      
      docs: defineCollection({ schema: docsSchema() }),
      
      
      docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
      };

If you are using the i18n collection to provide translations for additional languages you support or override our default labels, you will need to update the collection definition in a similar way and remove the collection type which is no longer available:

 // src/content.config.ts
 import { defineCollection } from "astro:content";
+import { docsLoader, i18nLoader } from "@astrojs/starlight/loaders";
 import { docsSchema, i18nSchema } from "@astrojs/starlight/schema";
export const collections = {

docs: defineCollection({ schema: docsSchema() }),

... (truncated)

Changelog

Sourced from @​astrojs/starlight's changelog.

0.30.1

Patch Changes

  • #2688 5c6996c Thanks @​HiDeoo! - Fixes an issue with autogenerated sidebars when using Starlight with Astro's new Content Layer API where group names would be sluggified.

0.30.0

Minor Changes

  • #2612 8d5a4e8 Thanks @​HiDeoo! - Adds support for Astro v5, drops support for Astro v4.

    Upgrade Astro and dependencies

    ⚠️ BREAKING CHANGE: Astro v4 is no longer supported. Make sure you update Astro and any other official integrations at the same time as updating Starlight:

    npx @astrojs/upgrade

    Community Starlight plugins and Astro integrations may also need to be manually updated to work with Astro v5. If you encounter any issues, please reach out to the plugin or integration author to see if it is a known issue or if an updated version is being worked on.

    Update your collections

    ⚠️ BREAKING CHANGE: Starlight's internal content collections, which organize, validate, and render your content, have been updated to use Astro's new Content Layer API and require configuration changes in your project.

    1. Move the content config file. This file no longer lives within the src/content/config.ts folder and should now exist at src/content.config.ts.

    2. Edit the collection definition(s). To update the docs collection, a loader is now required:

       // src/content.config.ts
       import { defineCollection } from "astro:content";
      +import { docsLoader } from "@astrojs/starlight/loaders";
       import { docsSchema } from "@astrojs/starlight/schema";
      export const collections = {
      
      docs: defineCollection({ schema: docsSchema() }),
      
      
      docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
      };

If you are using the i18n collection to provide translations for additional languages you support or override our default labels, you will need to update the collection definition in a similar way and remove the collection type which is no longer available:

 // src/content.config.ts
 import { defineCollection } from "astro:content";
+import { docsLoader, i18nLoader } from "@astrojs/starlight/loaders";
 import { docsSchema, i18nSchema } from "@astrojs/starlight/schema";
export const collections = {

... (truncated)

Commits

Updates @astrojs/starlight-tailwind from 2.0.3 to 3.0.0

Release notes

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

@​astrojs/starlight-tailwind@​3.0.0

Major Changes

  • #2612 8d5a4e8 Thanks @​HiDeoo! - ⚠️ BREAKING CHANGE: The minimum supported version of Starlight is now 0.30.0

    Please use the @astrojs/upgrade command to upgrade your project:

    npx @astrojs/upgrade

Patch Changes

  • #2664 62ff007 Thanks @​HiDeoo! - Publishes provenance containing verifiable data to link a package back to its source repository and the specific build instructions used to publish it.
Changelog

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

3.0.0

Major Changes

  • #2612 8d5a4e8 Thanks @​HiDeoo! - ⚠️ BREAKING CHANGE: The minimum supported version of Starlight is now 0.30.0

    Please use the @astrojs/upgrade command to upgrade your project:

    npx @astrojs/upgrade

Patch Changes

  • #2664 62ff007 Thanks @​HiDeoo! - Publishes provenance containing verifiable data to link a package back to its source repository and the specific build instructions used to publish it.
Commits

Updates @astrojs/tailwind from 5.1.2 to 5.1.3

Release notes

Sourced from @​astrojs/tailwind's releases.

@​astrojs/tailwind@​5.1.3

Patch Changes

Changelog

Sourced from @​astrojs/tailwind's changelog.

5.1.3

Patch Changes

6.0.0-alpha.0

Patch Changes

Commits

Updates astro from 4.16.16 to 5.0.5

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

  • #12645 8704c54 Thanks @​sarah11918! - Updates some reference links in error messages for new v5 docs.

  • #12641 48ca399 Thanks @​ascorbic! - Fixes a bug where astro info --copy wasn't working correctly on macOS systems.

  • #12461 62939ad Thanks @​kyr0! - Removes the misleading log message telling that a custom renderer is not recognized while it clearly is and works.

  • #12642 ff18b9c Thanks @​ematipico! - Provides more information when logging a warning for accessing Astro.request.headers in prerendered pages

  • #12634 03958d9 Thanks @​delucis! - Improves error message formatting for user config and content collection frontmatter

  • #12547 6b6e18d Thanks @​mtwilliams-code! - Fixes a bug where URL search parameters weren't passed when using the i18n fallback feature.

  • #12449 e6b8017 Thanks @​apatel369! - Fixes an issue where the custom assetFileNames configuration caused assets to be incorrectly moved to the server directory instead of the client directory, resulting in 404 errors when accessed from the client side.

  • #12518 e216250 Thanks @​ematipico! - Fixes an issue where SSR error pages would return duplicated custom headers.

  • #12625 74bfad0 Thanks @​ematipico! - Fixes an issue where the experimental.svg had incorrect type, resulting in some errors in the editors.

  • #12631 dec0305 Thanks @​ascorbic! - Fixes a bug where the class attribute was rendered twice on the image component

... (truncated)

Changelog

Sourced from astro's changelog.

5.0.5

Patch Changes

5.0.4

Patch Changes

5.0.3

Patch Changes

  • #12645 8704c54 Thanks @​sarah11918! - Updates some reference links in error messages for new v5 docs.

  • #12641 48ca399 Thanks @​ascorbic! - Fixes a bug where astro info --copy wasn't working correctly on macOS systems.

  • #12461 62939ad Thanks @​kyr0! - Removes the misleading log message telling that a custom renderer is not recognized while it clearly is and works.

  • #12642 ff18b9c Thanks @​ematipico! - Provides more information when logging a warning for accessing Astro.request.headers in prerendered pages

  • #12634 03958d9 Thanks @​delucis! - Improves error message formatting for user config and content collection frontmatter

  • #12547 6b6e18d Thanks @​mtwilliams-code! - Fixes a bug where URL search parameters weren't passed when using the i18n fallback feature.

  • #12449 e6b8017 Thanks @​apatel369! - Fixes an issue where the custom assetFileNames configuration caused assets to be incorrectly moved to the server directory instead of the client directory, resulting in 404 errors when accessed from the client side.

  • #12518 e216250 Thanks @​ematipico! - Fixes an issue where SSR error pages would return duplicated custom headers.

  • #12625 74bfad0 Thanks @​ematipico! - Fixes an issue where the experimental.svg had incorrect type, resulting in some errors in the editors.

... (truncated)

Commits

Updates marked from 15.0.3 to 15.0.4

Release notes

Sourced from marked's releases.

v15.0.4

15.0.4 (2024-12-15)

Bug Fixes

Commits
  • dba1327 chore(release): 15.0.4 [skip ci]
  • e4198ed fix: fix list with no items looping forever (#3560)
  • 10020d0 chore(deps-dev): Bump eslint from 9.14.0 to 9.16.0 (#3556)
  • f9948c1 chore(deps-dev): Bump @​markedjs/eslint-config from 1.0.8 to 1.0.9 (#3555)
  • 9f247c2 chore(deps-dev): Bump @​arethetypeswrong/cli from 0.17.0 to 0.17.1 (#3554)
  • 107ccfe chore(deps-dev): Bump rollup from 4.27.4 to 4.28.1 (#3553)
  • See full diff in compare view

Updates starlight-links-validator from 0.13.3 to 0.13.4

Release notes

Sourced from starlight-links-validator's releases.

v0.13.4

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • 7b78f5d chore: release v0.13.4
  • 009be12 fix: fixes a validation issue with Markdown headings including trailing markup
  • See full diff in compare view

Updates tailwindcss from 3.4.15 to 3.4.16

Release notes

Sourced from tailwindcss's releases.

v3.4.16

Fixed

  • Ensure the TypeScript types for PluginsConfig allow undefined values (#14668)

Changed

  • Bumped lilconfig to v3.x (#15289)
Changelog

Sourced from tailwindcss's changelog.

[3.4.16] - 2024-12-03

Fixed

  • Ensure the TypeScript types for PluginsConfig allow undefined values (#14668)

Changed

  • Bumped lilconfig to v3.x (#15289)
Commits

Updates lint-staged from 15.2.10 to 15.2.11

Release notes

Sourced from lint-staged's releases.

v15.2.11

Patch Changes

  • #1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

Changelog

Sourced from lint-staged's changelog.

15.2.11

Patch Changes

  • #1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

Commits
  • 1d39241 Merge pull request #1485 from lint-staged/changeset-release/master
  • 622f554 chore(changeset): release
  • 08ca5de Merge pull request #1487 from lint-staged/submodule-test
  • 7dd8caa fix: do not treat submodule root paths as staged files
  • 368c130 test: assert committing changes to submodule works from the repo
  • 5260203 Merge pull request #1486 from lint-staged/deps-2024-12-10
  • 6dbc3f4 build(deps): update dependencies
  • a1931f3 Merge pull request #1484 from wormsik/path-space-fix
  • bcfe309 docs: extract function and link to execa's implementation
  • 3d91525 fix: escape paths with spaces when using "shell" option
  • Additional commits viewable in compare view

Updates playwright from 1.49.0 to 1.49.1

Release notes

Sourced from playwright's releases.

v1.49.1

Highlights

microsoft/playwright#33802 - [Bug]: Codegen's Clear button doesn't work if not recording microsoft/playwright#33806 - [Bug]: playwright hangs while waiting for pending navigations microsoft/playwright#33787 - [Bug]: VSC extension isn't capturing all entered text microsoft/playwright#33788 - [Regression]: Double clicking the steps in trace viewer doesn't filter actions microsoft/playwright#33772 - [Bug]: aria_snapshot generates invalid yaml when combined with an aria-label attribut microsoft/playwright#33791 - [Bug]: text input with number value raises "container is not iterable" with to_match_aria_snapshot microsoft/playwright#33644 - [Bug]: getByRole can't find element with the accessible name from label element when aria-labelledby is not valid microsoft/playwright#33660 - [Regression]: Unable to open Playwright UI in Dark Mode

Browser Versions

  • Chromium 131.0.6778.33
  • Mozilla Firefox 132.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 130
  • Microsoft Edge 130
Commits
  • 88bc8af chore: mark v1.49.1 (#33921)
  • 9e855d5 cherry-pick(#33821): fix(recorder): allow clearing when recording is disabled...
  • 9365eb5 cherry-pick(#33834): fix: do not stall waiting for pending navigations after ...
  • f92b233 cherry-pick(#33822): fix(codegen): do not reset current tool upon clearing hi...
  • 008722b cherry-pick(#33797): fix(trace): in indexTree check isVisible before addi...
  • 1dc8b3c cherry-pick(#33746): chore: pin typescript while vue-tsc is broken
  • fbc770c cherry-pick(#33793): fix(aria): escape even more yaml (#33795)
  • 1046fe0 cherry-pick(#33753): docs: update extensions doc for new headless
  • 1781bf3 cherry-pick(#33706): docs: release notes for languages v1.49
  • b52a210 cherry-pick(#33712): docs(python): add LocatorAssertions.NotToMatchAriaSnapshot
  • Additional commits viewable in compare view

Updates prettier from 3.4.1 to 3.4.2

Release notes

Sourced from prettier's releases.

3.4.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.4.2

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->
C言
語
・
C++
・
Go
・
Rust
<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust
<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#16891 by @​fisker)

// Input
class A {
  @decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
// Prettier 3.4.1
class A {
@​decorator
async /**
</tr></table>

... (truncated)

Commits

Updates vitest from 2.1.7 to 2.1.8

Release notes

Sourced from vitest's releases.

v2.1.8

   🐞 Bug Fixes

    View changes on GitHub
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 <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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 16, 2024
Copy link

cloudflare-workers-and-pages bot commented Dec 16, 2024

Deploying ratatui with  Cloudflare Pages  Cloudflare Pages

Latest commit: b7e1ccb
Status: ✅  Deploy successful!
Preview URL: https://0bb8a8fd.ratatui.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-npm-ix03.ratatui.pages.dev

View logs

…11 updates

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

| Package | From | To |
| --- | --- | --- |
| [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.29.2` | `0.30.1` |
| [@astrojs/starlight-tailwind](https://github.com/withastro/starlight/tree/HEAD/packages/tailwind) | `2.0.3` | `3.0.0` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.16.16` | `5.0.5` |
| [marked](https://github.com/markedjs/marked) | `15.0.3` | `15.0.4` |
| [starlight-links-validator](https://github.com/HiDeoo/starlight-links-validator) | `0.13.3` | `0.13.4` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.15` | `3.4.16` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.2.10` | `15.2.11` |
| [playwright](https://github.com/microsoft/playwright) | `1.49.0` | `1.49.1` |
| [prettier](https://github.com/prettier/prettier) | `3.4.1` | `3.4.2` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.7` | `2.1.8` |



Updates `@astrojs/starlight` from 0.29.2 to 0.30.1
- [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 2.0.3 to 3.0.0
- [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.2 to 5.1.3
- [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 `astro` from 4.16.16 to 5.0.5
- [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 `marked` from 15.0.3 to 15.0.4
- [Release notes](https://github.com/markedjs/marked/releases)
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json)
- [Commits](markedjs/marked@v15.0.3...v15.0.4)

Updates `starlight-links-validator` from 0.13.3 to 0.13.4
- [Release notes](https://github.com/HiDeoo/starlight-links-validator/releases)
- [Commits](HiDeoo/starlight-links-validator@v0.13.3...v0.13.4)

Updates `tailwindcss` from 3.4.15 to 3.4.16
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.16/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.15...v3.4.16)

Updates `lint-staged` from 15.2.10 to 15.2.11
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.2.10...v15.2.11)

Updates `playwright` from 1.49.0 to 1.49.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.49.0...v1.49.1)

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

Updates `vitest` from 2.1.7 to 2.1.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.8/packages/vitest)

---
updated-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-major
  dependency-group: npm-dependencies
- dependency-name: "@astrojs/tailwind"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: marked
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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-patch
  dependency-group: npm-dependencies
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: playwright
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@orhun
Copy link
Member

orhun commented Dec 16, 2024

this needs fixing...

@joshka joshka force-pushed the dependabot/npm_and_yarn/npm-dependencies-94f527e410 branch from 17f2e89 to f13dfad Compare December 16, 2024 18:50
@joshka
Copy link
Member

joshka commented Dec 16, 2024

this needs fixing...

yup - looking at it now

@orhun
Copy link
Member

orhun commented Dec 16, 2024

thank you, I checked it locally yesterday - was able to run the website but the landing page was broken. RIP.

@joshka
Copy link
Member

joshka commented Dec 16, 2024

@joshka joshka force-pushed the dependabot/npm_and_yarn/npm-dependencies-94f527e410 branch from f13dfad to 4012edd Compare December 16, 2024 19:31
Startlight broken links detector is picking these up as broken even though they aren't
@joshka joshka merged commit 557a894 into main Dec 16, 2024
8 checks passed
@joshka joshka deleted the dependabot/npm_and_yarn/npm-dependencies-94f527e410 branch December 16, 2024 19:55
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.

2 participants