From e0998cc82b3a33a5ac49a9da1f0b5236536f59f8 Mon Sep 17 00:00:00 2001 From: Birk Johansson Date: Tue, 11 Dec 2018 16:36:34 +0100 Subject: [PATCH] Add 'target' to blacklisted folders --- 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))