We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a162f3 commit 9f29effCopy full SHA for 9f29eff
1 file changed
src/lib/reference.ts
@@ -85,9 +85,10 @@ 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] : [],
+ route.namespace != null && !route.namespace.isUndocumented
+ ? [route.namespace.path]
91
+ : [],
92
),
93
94
)
0 commit comments