Skip to content

Commit

Permalink
chore: remove unnecessary type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
fwouts committed Aug 21, 2023
1 parent f146172 commit 3846643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/find-files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export async function findFiles(
const gitRootPath = await findGitRoot(rootDir);
const relativePath = path.relative(gitRootPath, rootDir);
const relativePrefix = relativePath ? relativePath + path.sep : "";
const files: string[] = await globby(relativePrefix + pattern, {
const files = await globby(relativePrefix + pattern, {
gitignore: true,
ignore: ["**/node_modules/**"],
cwd: gitRootPath,
Expand Down

0 comments on commit 3846643

Please sign in to comment.