From b256c506694bcd9691f25f2dbee14d63ab9b61dc Mon Sep 17 00:00:00 2001 From: Gyandeep Singh Date: Tue, 9 Aug 2016 11:52:39 -0500 Subject: [PATCH] Chore: Fix glob for core js files for lint (fixes #6870) (#6872) --- Makefile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.js b/Makefile.js index a84b9b27ecd..2241d9cf371 100644 --- a/Makefile.js +++ b/Makefile.js @@ -62,7 +62,7 @@ const NODE = "node ", // intentional extra space // Files MAKEFILE = "./Makefile.js", - JS_FILES = find("lib/", "conf/").filter(fileType("js")).join(" "), + JS_FILES = "lib/**/*.js conf/**/*.js", JSON_FILES = find("conf/").filter(fileType("json")), MARKDOWN_FILES_ARRAY = find("docs/").concat(ls(".")).filter(fileType("md")), TEST_FILES = getTestFilePatterns(),