Skip to content

Commit

Permalink
Merge branch 'main' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
huntabyte committed Dec 13, 2024
2 parents e769f9b + 9abaa83 commit 727fd11
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sites/docs/scripts/registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,9 @@ async function crawlExample(rootPath: string, style: RegistryStyle) {
style,
files: [file],
registryDependencies: Array.from(registryDependencies),
dependencies: Array.from(dependencies),
dependencies: Array.from(dependencies).map((dep) =>
TMP_NEXT_DEPS.includes(dep) ? `${dep}@next` : dep
),
});
}

Expand Down

0 comments on commit 727fd11

Please sign in to comment.