forked from JoshuaKGoldberg/create-typescript-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.js
292 lines (245 loc) · 7.42 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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
/* global $ */
import { parseArgs } from "node:util";
import chalk from "chalk";
import { promises as fs } from "fs";
import { Octokit } from "octokit";
import prettier from "prettier";
import replace from "replace-in-file";
const { prompt } = require("enquirer");
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();
const { values } = parseArgs({
args: process.argv.slice(2),
options: {
description: { type: "string" },
owner: { type: "string" },
repository: { type: "string" },
title: { type: "string" },
"skip-api": { type: "boolean" },
},
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 Title Case title of the repository be?"
);
const owner = await getPrefillOrPromptedValue(
"owner",
"What owner or user will the repository be under?"
);
const description = await getPrefillOrPromptedValue(
"description",
"How would you describe the new package?"
);
const skipApi = await getPrefillOrPromptedValue(
"skip-api",
"Whether to skip calling the GitHub API (effectively making this a local-only change)."
);
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" }
)
);
for (const [from, to, files = ["./.github/**/*", "./*.*"]] of [
[existingPackage.description, description],
["Template TypeScript Node Package", title],
["JoshuaKGoldberg", owner],
["template-typescript-node-package", repository],
[/"setup": ".*",/, ``, "./package.json"],
[/"setup:test": ".*",/, ``, "./package.json"],
[
`"version": "${existingPackage.version}"`,
`"version": "0.0.0"`,
"./package.json",
],
[/## Explainer.*## Usage/s, `## Usage`, "./README.md"],
[
`["src/index.ts!", "script/setup*.js"]`,
`"src/index.ts!"`,
"./knip.jsonc",
],
[`["src/**/*.ts!", "script/**/*.js"]`, `"src/**/*.ts!"`, "./knip.jsonc"],
]) {
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(chalk.gray`✔️ Done.`);
console.log();
if (skipApi) {
console.log(chalk.gray`➖ Skipping API hydration.`);
} else {
console.log(chalk.gray`Checking gh auth status...`);
let auth;
try {
await $`gh auth status`;
auth = (await $`gh auth token`).toString().trim();
} catch (error) {
throw new Error(error.stderr);
}
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 initial repository settings...`);
const octokit = new Octokit({ auth });
octokit.rest.repos.update({
allow_auto_merge: true,
allow_rebase_merge: false,
allow_squash_merge: true,
default_branch: "main",
delete_branch_on_merge: true,
description,
has_wiki: false,
owner,
repo: repository,
});
console.log();
console.log(chalk.gray`Hydrating branch protection settings...`);
// Note: keep this inline script in sync with .github/workflows/release.yml!
// Todo: it would be nice to not have two sources of truth...
// https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues/145
await octokit.request(
`PUT /repos/${owner}/${repository}/branches/main/protection`,
{
allow_deletions: false,
allow_force_pushes: true,
allow_fork_pushes: false,
allow_fork_syncing: true,
block_creations: false,
branch: "main",
enforce_admins: false,
owner,
repo: repository,
required_conversation_resolution: true,
required_linear_history: false,
required_pull_request_reviews: null,
required_status_checks: {
checks: [
{ context: "build" },
{ context: "compliance" },
{ context: "knip" },
{ context: "lint" },
{ context: "markdown" },
{ context: "package" },
{ context: "packages" },
{ context: "prettier" },
{ context: "spelling" },
{ context: "test" },
],
strict: false,
},
restrictions: null,
}
);
console.log(chalk.gray`✔️ Done.`);
}
console.log();
console.log(chalk.gray`Removing setup script...`);
await fs.rm("./script", { force: true, recursive: true });
await fs.rm(".github/workflows/setup.yml");
console.log(chalk.gray`✔️ Done.`);
} catch (error) {
console.log(chalk.red(error.stack));
caughtError = error;
} finally {
console.log();
console.log(
chalk.gray`Removing devDependency packages only used for setup...`
);
await $`pnpm remove chalk enquirer octokit replace-in-file -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();