Skip to content

Commit

Permalink
fix: add 'target' to blacklisted folders (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Birkbjo authored and varl committed Dec 12, 2018
1 parent 7b69fb9 commit d6170b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/files.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const path = require('path')
const log = require('./log.js')

const whitelist = ['.js', '.json', '.css', '.scss', '.md', '.jsx']
const blacklist = ['node_modules', 'build', 'dist']
const blacklist = ['node_modules', 'build', 'dist', 'target']

function whitelisted(file) {
return whitelist.includes(path.extname(file))
Expand Down

0 comments on commit d6170b9

Please sign in to comment.