Skip to content

Commit

Permalink
fix: typo in fileMatcher's default patterns (#5705)
Browse files Browse the repository at this point in the history
  • Loading branch information
indutny committed Mar 18, 2021
1 parent 8f84591 commit c0ae89c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app-builder-lib/src/fileMatcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export function getMainFileMatchers(
}
patterns.splice(insertIndex, 0, ...customFirstPatterns)

patterns.push(`!**/*.{${excludedExts}${packager.config.includePdb === true ? "" : ",pdb"}`)
patterns.push(`!**/*.{${excludedExts}${packager.config.includePdb === true ? "" : ",pdb"}}`)
patterns.push("!**/._*")
patterns.push("!**/electron-builder.{yaml,yml,json,json5,toml}")
patterns.push(`!**/{${excludedNames}}`)
Expand Down

0 comments on commit c0ae89c

Please sign in to comment.