From 225fa2b5e2b441cc2a85aa7b3cb73d4bf2d172ab Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 5 Oct 2017 17:22:11 -0400 Subject: [PATCH] Adjust ignore mask in build script to #*, not just #*.* --- scripts/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/config.js b/scripts/config.js index 990c34f69..7b3b234d1 100644 --- a/scripts/config.js +++ b/scripts/config.js @@ -48,7 +48,7 @@ const browserifyConfigs = [ ]; // exclude mask used for js, copy, symlink and sass tasks -const ignoreMask = ['**/#*.*']; +const ignoreMask = ['**/#*']; const jsFiles = [ `{${dirs.join(',')}}/**/*.js`,