-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
79 lines (74 loc) · 2.16 KB
/
index.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
67
68
69
70
71
72
73
74
75
76
77
78
79
// 文件复制
import fs from "fs-extra";
import { join, extname } from "path";
const cwdUrl = process.cwd();
const getFileListAndIncludes = (startUrl, destUrl) => {
return new Promise((res, rej) => {
fs.readdir(startUrl, (err, files) => {
if (err) throw err;
const filePromiseAll = [];
files.forEach((file) => {
const filedir = join(startUrl, file);
const stats = fs.statSync(filedir);
const isFile = stats.isFile(); //是文件
const isDir = stats.isDirectory(); //是文件夹
if (isFile) {
// 将tsconfig.json无法编译的文件复制到project_template
if (extname(file) !== ".ts") {
const copyToJs = destUrl.replace(
"project_template_ts",
"project_template",
);
fs.ensureDirSync(copyToJs); // 确保文件夹存在
filePromiseAll.push(
fs.copyFile(join(startUrl, file), join(copyToJs, file)),
);
}
filePromiseAll.push(
fs.copyFile(join(startUrl, file), join(destUrl, file)),
);
}
if (isDir) {
fs.mkdir(join(destUrl, file)).then(() => {
getFileListAndIncludes(
join(startUrl, file),
join(destUrl, file),
).then((filePromiseAll) => {
Promise.all(filePromiseAll);
});
});
}
});
res(filePromiseAll);
});
});
};
fs.readFile(join("./", "package.json"), function (err, data) {
if (err) throw err;
fs.writeFile(join("./", "build", "package.json"), data, function (err) {
if (err) throw err;
});
});
fs.readFile(join("./", "README.md"), function (err, data) {
if (err) throw err;
fs.writeFile(join("./", "build", "README.md"), data, function (err) {
if (err) throw err;
});
});
const destUrl = join(
cwdUrl,
"build",
"commands",
"create",
"project_template_ts",
);
// 复制ts文件
fs.mkdir(destUrl).then(() => {
getFileListAndIncludes(
join(cwdUrl, "src", "commands", "create", "project_template"),
destUrl,
false,
).then((filePromiseAll) => {
Promise.all(filePromiseAll);
});
});