-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.js
124 lines (108 loc) · 3.22 KB
/
init.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import { promises as fs } from "node:fs";
import { basename, join, relative } from "node:path";
import { fileURLToPath } from "node:url";
import console from "console-ansi";
import { replaceInFile } from "replace-in-file";
import npmUser from "npm-user";
import camelcase from "camelcase";
import { exec, writeJson } from "./utils.js";
const __dirname = fileURLToPath(new URL(".", import.meta.url));
const init = async (options = {}) => {
const label = `init`;
console.time(label);
const packageName = options.name || basename(options.cwd);
// Check for empty directory
if (
(await fs.readdir(options.cwd)).filter(
(file) => ![".DS_Store"].includes(file),
).length > 0
) {
console.warn(`Directory not empty. Files will not be overwritten.`);
}
// Get npm infos
let user = { ...options };
if (!user.username) {
const { stdout, stderr } = await exec("npm profile get --json");
if (stderr) console.error(stderr);
const npmProfile = JSON.parse(stdout);
user.username ||= npmProfile.name;
user.authorName ||= npmProfile.fullname || user.username;
user.gitHubUsername ||= npmProfile.github || user.username;
} else {
user.username = user.username.trim();
try {
const npmProfile = await npmUser(user.username);
user.authorName ||= npmProfile.name || user.username;
user.gitHubUsername ||= npmProfile.github || user.username;
} catch (error) {
console.error(error);
}
}
console.info(
`user: ${user.authorName} (npm: "${user.username}", github: "${user.gitHubUsername}")`,
);
try {
// Copy template files
const templatePath = join(__dirname, "template");
await fs.cp(templatePath, options.cwd, {
force: false,
recursive: true,
async filter(source) {
const copy = options.ts
? !["index.js"].includes(basename(source))
: !["tsconfig.json", "src"].includes(basename(source));
if (copy && !(await fs.lstat(source)).isDirectory()) {
console.log("Copying:", relative(templatePath, source));
}
return copy;
},
});
// Rename gitignore otherwise ignored on npm publish
await fs.rename(
join(options.cwd, "gitignore"),
join(options.cwd, ".gitignore"),
);
// Rewrite package name to folder name
await replaceInFile({
files: `${options.cwd}/**/*`,
ignore: options.ignore,
from: [
/packageNameCC/g,
/packageName/g,
/gitHubUsername/g,
/username/g,
/authorName/g,
/year/g,
],
to: [
camelcase(packageName),
packageName,
user.gitHubUsername,
user.username,
user.authorName,
new Date().getFullYear(),
],
});
// Change main entry point
if (options.ts) {
await writeJson(
join(options.cwd, "package.json"),
{
main: "lib/index.js",
exports: {
".": {
types: "./types/index.d.ts",
default: "./lib/index.js",
},
},
},
{ merge: true },
);
}
} catch (error) {
console.error(error);
}
console.timeEnd(label);
};
init.description = `Create simple package structure.`;
export default init;