-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcombine.js
54 lines (41 loc) · 1.16 KB
/
combine.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const path = require('path');
const fs = require('fs');
const Combine = (() => {
const getFile = (file) => {
return fs.readFileSync(file);
};
const getFiles = (dirname) => {
let files = [];
const filenames = fs.readdirSync(dirname);
filenames.map((filename) => {
const file = path.resolve(dirname, filename);
const stat = fs.statSync(file);
if (stat && stat.isDirectory()) {
files.push(...getFiles(file));
} else {
try {
const content = getFile(file);
files.push(JSON.parse(content));
} catch (error) {
console.error(`[Combine] Unable to parse file : ${file}`);
}
}
});
return files;
};
const clean = (output) => {
if (fs.existsSync(output)) fs.unlinkSync(output);
};
const run = (dirname = './snippets') => {
const output = path.resolve(dirname, 'snippets.code-snippets');
clean(output);
const files = getFiles(dirname);
data = Object.assign({}, ...files);
fs.writeFileSync(output, JSON.stringify(data));
console.log('[Combine] Successfully combined json files');
};
return {
run,
};
})();
Combine.run();