-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathsetup.js
219 lines (177 loc) · 5.64 KB
/
setup.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/* global $ */
import chalk from "chalk";
import { promises as fs } from "fs";
import prettier from "prettier";
let caughtError;
try {
console.clear();
console.log(
chalk.greenBright`Welcome to the`,
chalk.bgGreenBright`template-typescript-node-package`,
chalk.greenBright`package setup!`
);
console.log(
chalk.blue`This setup script will hydrate your repository based on your provided settings.`
);
console.log();
console.log(chalk.gray`Setting up temporary devDependency packages...`);
await $`pnpm add enquirer replace-in-file yargs -D`;
console.log(chalk.gray`✔️ Done.`);
console.log();
console.log(chalk.gray`Checking gh auth status...`);
try {
await $`gh auth status`;
} catch (error) {
throw new Error(error.stderr);
}
console.log(chalk.gray`✔️ Done.`);
console.log();
const { parseArgs } = require("node:util");
const { prompt } = require("enquirer");
const { values } = parseArgs({
args: process.argv.slice(2),
options: {
description: { type: "string" },
organization: { type: "string" },
repository: { type: "string" },
title: { type: "string" },
},
tokens: true,
strict: false,
});
async function getPrefillOrPromptedValue(key, message) {
const { [key]: value } = values[key]
? (console.log(chalk.grey(`Pre-filling ${key} to ${values[key]}.`)),
values)
: await prompt({
message,
name: key,
type: "input",
});
return value;
}
const repository = await getPrefillOrPromptedValue(
"repository",
"What will the kebab-case name of the repository be?"
);
const title = await getPrefillOrPromptedValue(
"title",
"What will the Sentence Case title of the repository be?"
);
const organization = await getPrefillOrPromptedValue(
"organization",
"What organization or user will the repository be under?"
);
const description = await getPrefillOrPromptedValue(
"description",
"How would you describe the new package?"
);
console.log();
console.log(chalk.gray`Hydrating package metadata locally...`);
async function readFileAsJSON(filePath) {
return JSON.parse((await fs.readFile(filePath)).toString());
}
const [existingContributors, existingPackage, outcomeLabels] =
await Promise.all([
readFileAsJSON("./.all-contributorsrc"),
readFileAsJSON("./package.json"),
readFileAsJSON("./script/labels.json"),
]);
await fs.writeFile(
"./.all-contributorsrc",
prettier.format(
JSON.stringify({
...existingContributors,
contributors: [
{
...existingContributors.contributors.find(
({ login }) => login === "JoshuaKGoldberg"
),
contributions: ["tool"],
},
],
}),
{ parser: "json" }
)
);
const replace = require("replace-in-file");
for (const [from, to, files = ["./.github/**/*", "./*.*"]] of [
[existingPackage.description, description],
["Template TypeScript Node Package", title],
["JoshuaKGoldberg", organization],
["template-typescript-node-package", repository],
[/"setup": ".*",/, ``, "./package.json"],
[
`"version": "${existingPackage.version}"`,
`"version": "0.0.0"`,
"./package.json",
],
[/## Explainer.*## Usage/s, `## Usage`, "./README.md"],
]) {
await replace({ files, from, to });
}
const endOfReadmeNotice = `
<!-- You can remove this notice if you don't want it 🙂 no worries! -->
> 💙 This package is based on [@JoshuaKGoldberg](https://github.com/JoshuaKGoldberg)'s [template-typescript-node-package](https://github.com/JoshuaKGoldberg/template-typescript-node-package).`;
if (
!(await fs.readFile("./README.md")).toString().includes(endOfReadmeNotice)
) {
await fs.appendFile("./README.md", endOfReadmeNotice);
}
console.log(chalk.gray`✔️ Done.`);
console.log();
console.log(chalk.gray`Clearing CHANGELOG.md...`);
await fs.writeFile(
"./CHANGELOG.md",
prettier.format(`# Changelog`, { parser: "markdown" })
);
console.log(chalk.gray`✔️ Done.`);
console.log();
console.log(chalk.gray`Deleting local git tags...`);
await $`git tag -d $(git tag -l)`;
console.log(chalk.gray`✔️ Done.`);
console.log();
console.log(chalk.gray`Hydrating repository labels...`);
const existingLabels = JSON.parse(
(await $`gh label list --json name`).stdout || "[]"
);
for (const outcome of outcomeLabels) {
const action = existingLabels.some(
(existing) => existing.name === outcome.name
)
? "edit"
: "create";
await $`gh label ${action} ${outcome.name} --color ${outcome.color} --description ${outcome.description}`;
}
console.log(chalk.gray`✔️ Done.`);
console.log();
console.log(chalk.gray`Hydrating repository settings...`);
await $`gh repo edit --delete-branch-on-merge --description ${description} --enable-auto-merge --enable-rebase-merge=false --enable-squash-merge`;
console.log(chalk.gray`✔️ Done.`);
console.log();
console.log(chalk.gray`Removing setup script...`);
await fs.rm("./script", { force: true, recursive: true });
console.log(chalk.gray`✔️ Done.`);
} catch (error) {
console.log(chalk.red(error));
caughtError = error;
} finally {
console.log();
console.log(chalk.gray`Cleaning up temporary devDependency packages...`);
await $`pnpm remove enquirer replace-in-file yargs -D`;
console.log(chalk.gray`✔️ Done.`);
}
console.log();
if (caughtError) {
console.log(
chalk.yellow`Looks like there was a problem. Correct it and try again? 😕`
);
} else {
console.log(chalk.green`Great, looks like everything worked!`);
console.log(chalk.blue`You may consider committing these changes:`);
console.log(chalk.gray`\tgit add -A`);
console.log(chalk.gray`\tgit commit -m "chore: hydrated repo"`);
console.log(chalk.gray`\tgit push`);
console.log(chalk.greenBright`See ya! 👋`);
}
console.log();