From 70d8675060078e6bba81a36b76a2fe47535b5a12 Mon Sep 17 00:00:00 2001 From: Scott Ashton Date: Thu, 26 Sep 2019 00:11:38 -0600 Subject: [PATCH 1/2] Test chagne --- index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index a3fb81c..c158854 100644 --- a/index.js +++ b/index.js @@ -11,6 +11,8 @@ var DIRECTIVE_REGEX = /^[\/\s#]*?=\s*?((?:require|include)(?:_tree|_directory)?) var requiredFiles = {}, extensions = []; +console.log("Test change"); + module.exports = function (params) { var params = params || {}; if (params.extensions) { @@ -181,4 +183,4 @@ function difference(arr1, arr2) { } } return arr1; -} \ No newline at end of file +} From fd3195451af29c2f9e688cb4923c17bc0184c88d Mon Sep 17 00:00:00 2001 From: Scott Ashton Date: Thu, 26 Sep 2019 00:13:25 -0600 Subject: [PATCH 2/2] Another change --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index c158854..e074d5f 100644 --- a/index.js +++ b/index.js @@ -8,11 +8,11 @@ var fs = require('fs'), var DIRECTIVE_REGEX = /^[\/\s#]*?=\s*?((?:require|include)(?:_tree|_directory)?)\s+(.*$)/mg; //Note to Wiledal: Allowed asterisks, single quotes, and double quotes // Note to wiledal: I replaced the hidden file regex just with a simple check if the first character in the file name is a period. Do you know of use cases where you would want it to be more complicated than that? +console.info("Another change...") + var requiredFiles = {}, extensions = []; -console.log("Test change"); - module.exports = function (params) { var params = params || {}; if (params.extensions) {