Skip to content

Commit

Permalink
docs: remove obsolete check (#1452)
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT committed Oct 15, 2022
1 parent 5aa747f commit 0f9b0c6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions scripts/apidoc/moduleMethods.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@ export function selectApiModules(
): DeclarationReflection[] {
return project
.getChildrenByKind(ReflectionKind.Class)
.filter((module) => faker[extractModuleFieldName(module)] != null)
.filter(
(module) => module.name !== 'FakeModule' && module.name !== 'UniqueModule'
);
.filter((module) => faker[extractModuleFieldName(module)] != null);
}

/**
Expand Down

0 comments on commit 0f9b0c6

Please sign in to comment.