Skip to content

Commit

Permalink
feat(federation): make getTypesFromPaths method public
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-sa authored and Rick Dutour Geerling committed Jan 20, 2020
1 parent f2d5950 commit 2c83518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/graphql-types.loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class GraphQLTypesLoader {
return mergeTypes(flatTypes, { all: true }) as any;
}

private async getTypesFromPaths(paths: string | string[]): Promise<string[]> {
async getTypesFromPaths(paths: string | string[]): Promise<string[]> {
paths = util.isArray(paths)
? paths.map(path => normalize(path))
: normalize(paths);
Expand Down

0 comments on commit 2c83518

Please sign in to comment.