Skip to content

Commit

Permalink
feat: ignore .git and .DS_Store
Browse files Browse the repository at this point in the history
  • Loading branch information
ambar committed Oct 9, 2021
1 parent 7d9b66e commit dfb8e07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gogen/lib/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const getPathType = (path: any) => {
return 'npm'
}

let defaultIgnore = ["**/node_modules/**"]
let defaultIgnore = ["**/node_modules/**", "**/.git", "**/.DS_Store"]
async function* globFiles(
globs: string[],
{cwd = process.cwd()}: fg.Options = {}
Expand Down

0 comments on commit dfb8e07

Please sign in to comment.