From f94dac8f5886dec5d3f34ced42991ba24c3d5179 Mon Sep 17 00:00:00 2001 From: Dominik Tomasi Date: Tue, 11 Apr 2017 14:48:09 +0200 Subject: [PATCH 1/2] Exclude .map extension --- lib/compiler.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/compiler.js b/lib/compiler.js index b362453..61d68d7 100644 --- a/lib/compiler.js +++ b/lib/compiler.js @@ -661,6 +661,7 @@ function getExcludedExtensions() { return { '.json': '.json', '.node': 'node', + '.map': '.map' }; } From aac777fbc81540b50f84134579d85f51c253e8e6 Mon Sep 17 00:00:00 2001 From: Dominik Tomasi Date: Mon, 12 Jun 2017 12:47:48 +0200 Subject: [PATCH 2/2] fixing eslint -> Missing trailing comma --- lib/compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compiler.js b/lib/compiler.js index 61d68d7..fbffd48 100644 --- a/lib/compiler.js +++ b/lib/compiler.js @@ -661,7 +661,7 @@ function getExcludedExtensions() { return { '.json': '.json', '.node': 'node', - '.map': '.map' + '.map': '.map', }; }