We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 654623e commit 357f0c4Copy full SHA for 357f0c4
1 file changed
src/lib/reference.ts
@@ -85,6 +85,7 @@ const getNamespacePaths = (routes: Route[]): string[] => {
85
new Set(
86
routes
87
.filter(({ isUndocumented }) => !isUndocumented)
88
+ .filter(({ name }) => !name.startsWith('unstable_'))
89
.flatMap((route) =>
90
route.namespace != null ? [route.namespace.path] : [],
91
),
0 commit comments