From e5b88126849b2e710747418f2c10fa4b9f4d0a12 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 24 May 2026 13:28:42 +0000 Subject: [PATCH] fix(registry): point date-fns 4.3+ at the new monorepo docs path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit date-fns 4.3.0 migrated to a pnpm monorepo layout and removed the top-level `docs/` directory; the markdown docs now live at `pkgs/core/docs/` alongside the `@date-fns/core` package, which broke publish-all for `npm/date-fns@4.3.0`. Add a versioned range for 4.3.0+ pointing at the new path and keep the existing range for 3.0.0–4.2.x. --- registry/npm/date-fns.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/registry/npm/date-fns.yaml b/registry/npm/date-fns.yaml index 1089f3a..6c441c2 100644 --- a/registry/npm/date-fns.yaml +++ b/registry/npm/date-fns.yaml @@ -3,7 +3,17 @@ description: "Modern JavaScript date utility library" repository: https://github.com/date-fns/date-fns versions: + # date-fns 4.3.0 moved to a pnpm monorepo layout: the top-level `docs/` + # directory was removed and the markdown docs now live at + # `pkgs/core/docs/` alongside the `@date-fns/core` package. + - min_version: "4.3.0" + source: + type: git + url: https://github.com/date-fns/date-fns + docs_path: pkgs/core/docs + tag_pattern: "v{version}" - min_version: "3.0.0" + max_version: "4.3.0" source: type: git url: https://github.com/date-fns/date-fns