5etools-utils 0.1.8 → 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 +10 -8
- 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
|
@@ -4,21 +4,23 @@ function isDirectory (path) {
|
|
|
4
4
|
return fs.lstatSync(path).isDirectory();
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
function readJSON (path) {
|
|
7
|
+
function readJSON (path, {isIncludeRaw = false} = {}) {
|
|
8
8
|
try {
|
|
9
9
|
if (fs.existsSync(path)) {
|
|
10
10
|
let str = fs.readFileSync(path, "utf8");
|
|
11
11
|
// Strip BOM(s)
|
|
12
12
|
while (str.charCodeAt(0) === 0xFEFF) str = str.slice(1);
|
|
13
|
-
|
|
13
|
+
const out = JSON.parse(str);
|
|
14
|
+
if (isIncludeRaw) return {raw: str, json: out};
|
|
15
|
+
return out;
|
|
14
16
|
} else {
|
|
15
17
|
const parts = path.split(/[\\/]+/g);
|
|
16
18
|
const dir = parts.slice(0, -1).join("/");
|
|
17
19
|
const originalName = parts[parts.length - 1];
|
|
18
20
|
const filenames = fs.readdirSync(dir, "utf8");
|
|
19
21
|
const filename = filenames.find(it => it.toLowerCase() === originalName.toLowerCase());
|
|
20
|
-
if (filename)
|
|
21
|
-
|
|
22
|
+
if (!filename) throw new Error(`Could not find file "${path}"`);
|
|
23
|
+
return readJSON(`${dir}/${filename}`, {isIncludeRaw});
|
|
22
24
|
}
|
|
23
25
|
} catch (e) {
|
|
24
26
|
e.message += ` (Path: ${path})`;
|
|
@@ -28,7 +30,7 @@ function readJSON (path) {
|
|
|
28
30
|
|
|
29
31
|
function listJsonFiles (dir) {
|
|
30
32
|
const dirContent = fs.readdirSync(dir, "utf8")
|
|
31
|
-
.map(file => `${dir}/${file}`);
|
|
33
|
+
.map(file => dir === "." ? file : `${dir}/${file}`);
|
|
32
34
|
return dirContent.reduce((acc, file) => {
|
|
33
35
|
if (isDirectory(file)) acc.push(...listJsonFiles(file));
|
|
34
36
|
else {
|
|
@@ -38,10 +40,10 @@ function listJsonFiles (dir) {
|
|
|
38
40
|
}, []);
|
|
39
41
|
}
|
|
40
42
|
|
|
41
|
-
function runOnDirs (fn, root = ".") {
|
|
43
|
+
function runOnDirs (fn, {root = ".", dirWhitelist = null} = {}) {
|
|
42
44
|
fs.readdirSync(root, "utf8")
|
|
43
|
-
.map(dir => ({dir, dirPath: `${root}/${dir}`}))
|
|
44
|
-
.filter(({dir, dirPath}) => isDirectory(dirPath) && !dir.startsWith(".") && !dir.startsWith("_") && dir !== "node_modules")
|
|
45
|
+
.map(dir => ({dir, dirPath: root === "." ? dir : `${root}/${dir}`}))
|
|
46
|
+
.filter(({dir, dirPath}) => isDirectory(dirPath) && !dir.startsWith(".") && !dir.startsWith("_") && dir !== "node_modules" && (!dirWhitelist || dirWhitelist.has(dir)))
|
|
45
47
|
.forEach(({dirPath}) => fn(dirPath));
|
|
46
48
|
}
|
|
47
49
|
|