Skip to content

Commit 357f0c4

Browse files
committed
Filter out unstable_ namespace
1 parent 654623e commit 357f0c4

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/lib/reference.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ const getNamespacePaths = (routes: Route[]): string[] => {
8585
new Set(
8686
routes
8787
.filter(({ isUndocumented }) => !isUndocumented)
88+
.filter(({ name }) => !name.startsWith('unstable_'))
8889
.flatMap((route) =>
8990
route.namespace != null ? [route.namespace.path] : [],
9091
),

0 commit comments

Comments
 (0)