Skip to content

Commit

Permalink
fix(utils): typo in replaceInFiles
Browse files Browse the repository at this point in the history
  • Loading branch information
kbrandwijk committed Jan 7, 2018
1 parent 42c153e commit a47f3ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as fs from 'fs'
import * as npmrun from 'npm-run'

export function replaceInFiles(filePaths: string[], searchValue: string, replaceValue: string) {
for (const filePath in filePaths) {
for (const filePath of filePaths) {
replaceInFile(filePath, searchValue, replaceValue)
}
}
Expand Down

0 comments on commit a47f3ab

Please sign in to comment.