-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate.js
38 lines (31 loc) · 1.09 KB
/
generate.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
const fs = require('fs');
const path = require('path');
const componentsFolder = './../components';
const files = fs.readdirSync(path.resolve(__dirname, componentsFolder));
let imports = '';
let file = 'export default [\n';
files.forEach(_file => {
imports += `import ${_file} from '${componentsFolder}/${_file}';\n`;
file += `{`;
file += `'name':'${_file}',`;
file += `'path': ${_file}`;
const dataPath = path.resolve(__dirname, `${componentsFolder}/${_file}/dataStory.js`);
if (fs.existsSync(dataPath)) {
file += `,'data': require('${componentsFolder}/${_file}/dataStory.js')`;
}
const dataStyle = path.resolve(__dirname, `${componentsFolder}/${_file}/dataStyle.js`);
if (fs.existsSync(dataStyle)) {
file += `,'style': require('${componentsFolder}/${_file}/dataStyle.js')`;
}
file += '},\n';
file = file.replace(',},','},');
})
file += ']';
file = file.replace(',]', ']');
const _path = path.resolve(__dirname, 'components.js');
fs.writeFile(_path, imports + file, function (err) {
if (err) {
return console.log(err);
}
console.log("The file was saved!");
});