Skip to content

Commit

Permalink
fix: resolve match-all glob correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
4nickel committed Mar 5, 2022
1 parent 06566bf commit edcc08f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/steps/computeAliases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export function computeAliases(basePath: string, tsConfig: TSConfig): Alias[] {
aliasPaths: paths[alias].map((path: string) =>
resolve(basePath, path.replace(regex, ""))
),
}))
.filter(({ prefix }) => prefix);
}));
return aliases;
}

0 comments on commit edcc08f

Please sign in to comment.