Skip to content

Commit

Permalink
Chore: Fix glob for core js files for lint (fixes #6870) (#6872)
Browse files Browse the repository at this point in the history
  • Loading branch information
gyandeeps authored and ilyavolodin committed Aug 9, 2016
1 parent f8ab8f1 commit b256c50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.js
Expand Up @@ -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(),
Expand Down

0 comments on commit b256c50

Please sign in to comment.