-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuildLight.js
66 lines (59 loc) · 1.79 KB
/
buildLight.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
55
56
57
58
59
60
61
62
63
64
65
66
const { exec } = require('child_process');
const fsextra = require('fs-extra');
const fs = require('fs');
const util = require('util');
const readFileAsync = util.promisify(fs.readFile);
const writeFileAsync = util.promisify(fs.writeFile);
const buildProject = () => {
console.log("start build");
return new Promise((resolve, reject) => {
const buildCommand = 'npm run docusaurus build';
exec(buildCommand, (err, stdout, stderr) => {
if (err) {
console.error(`Error running build command: ${err}`);
reject(err);
} else {
console.log('Build completed successfully');
resolve();
}
});
});
};
const compatible = () => {
console.log("start compatible");
return new Promise((resolve, reject) => {
const buildCommand = 'node compatible.js';
exec(buildCommand, (err, stdout, stderr) => {
if (err) {
console.error(`Error running compatible command: ${err}`);
reject(err);
} else {
console.log('Compatible completed successfully');
resolve();
}
});
});
};
const main = async () => {
const generate = require('./generate');
// 生成
await generate.main();
// 兼容
await compatible();
// 打包
await buildProject();
// 将JSON放到build中
const buildPath = "./build/tutorials.json";
await fsextra.copy("./tutorials.json", "./build/tutorials.json")
.then(res => {
console.log('copy tutorials.json successfully');
})
const json = await readFileAsync(buildPath, 'utf8');
const data = eval(json);
const navbarItems = require("./navbarItems");
data.forEach((ele, index) => {
ele.startPage = navbarItems[index].docId;
})
await writeFileAsync(buildPath, JSON.stringify(data), 'utf8');
}
main();