From d6170b9b370b76b0d86ff1ca7d2413007caa3584 Mon Sep 17 00:00:00 2001 From: Birk Johansson Date: Wed, 12 Dec 2018 11:42:06 +0100 Subject: [PATCH] fix: add 'target' to blacklisted folders (#9) --- lib/files.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/files.js b/lib/files.js index 931a5003..d9b5003d 100644 --- a/lib/files.js +++ b/lib/files.js @@ -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))