5etools-utils 0.1.10 → 0.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/TestJson.js +6 -1
- package/lib/UtilFs.js +2 -2
- package/package.json +1 -1
package/lib/TestJson.js
CHANGED
|
@@ -18,12 +18,14 @@ class JsonTester {
|
|
|
18
18
|
{
|
|
19
19
|
dirSchema,
|
|
20
20
|
dir = ".",
|
|
21
|
+
dirWhitelist = null,
|
|
21
22
|
tagLog = LOG_TAG,
|
|
22
23
|
fnGetSchemaId = () => "homebrew.json",
|
|
23
24
|
},
|
|
24
25
|
) {
|
|
25
26
|
this._dirSchema = dirSchema;
|
|
26
27
|
this._dir = dir;
|
|
28
|
+
this._dirWhitelist = dirWhitelist;
|
|
27
29
|
this._tagLog = tagLog;
|
|
28
30
|
this._fnGetSchemaId = fnGetSchemaId;
|
|
29
31
|
|
|
@@ -120,7 +122,10 @@ class JsonTester {
|
|
|
120
122
|
if (!valid) this._handleError({filePath, errors, errorsFull, data});
|
|
121
123
|
});
|
|
122
124
|
},
|
|
123
|
-
|
|
125
|
+
{
|
|
126
|
+
root: this._dir,
|
|
127
|
+
dirWhitelist: this._dirWhitelist,
|
|
128
|
+
},
|
|
124
129
|
);
|
|
125
130
|
|
|
126
131
|
return {errors, errorsFull};
|
package/lib/UtilFs.js
CHANGED
|
@@ -40,10 +40,10 @@ function listJsonFiles (dir) {
|
|
|
40
40
|
}, []);
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
function runOnDirs (fn, root = ".") {
|
|
43
|
+
function runOnDirs (fn, {root = ".", dirWhitelist = null} = {}) {
|
|
44
44
|
fs.readdirSync(root, "utf8")
|
|
45
45
|
.map(dir => ({dir, dirPath: root === "." ? dir : `${root}/${dir}`}))
|
|
46
|
-
.filter(({dir, dirPath}) => isDirectory(dirPath) && !dir.startsWith(".") && !dir.startsWith("_") && dir !== "node_modules")
|
|
46
|
+
.filter(({dir, dirPath}) => isDirectory(dirPath) && !dir.startsWith(".") && !dir.startsWith("_") && dir !== "node_modules" && (!dirWhitelist || dirWhitelist.has(dir)))
|
|
47
47
|
.forEach(({dirPath}) => fn(dirPath));
|
|
48
48
|
}
|
|
49
49
|
|