-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathmigrateWithOptions.ts
76 lines (70 loc) · 2.24 KB
/
migrateWithOptions.ts
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
import { withSpinner, withSpinners } from "../shared/cli/spinners.js";
import { createCleanUpFilesCommands } from "../shared/createCleanUpFilesCommands.js";
import { GitHubAndOptions } from "../shared/options/readOptions.js";
import { clearUnnecessaryFiles } from "../steps/clearUnnecessaryFiles.js";
import { detectExistingContributors } from "../steps/detectExistingContributors.js";
import { finalizeDependencies } from "../steps/finalizeDependencies.js";
import { initializeGitHubRepository } from "../steps/initializeGitHubRepository/index.js";
import { populateCSpellDictionary } from "../steps/populateCSpellDictionary.js";
import { runCommands } from "../steps/runCommands.js";
import { updateAllContributorsTable } from "../steps/updateAllContributorsTable.js";
import { updateLocalFiles } from "../steps/updateLocalFiles.js";
import { writeReadme } from "../steps/writeReadme/index.js";
import { writeStructure } from "../steps/writing/writeStructure.js";
export async function migrateWithOptions({
github,
options,
}: GitHubAndOptions) {
await withSpinners("Migrating repository structure", [
["Clearing unnecessary files", clearUnnecessaryFiles],
[
"Writing structure",
async () => {
await writeStructure(options);
},
],
[
"Writing README.md",
async () => {
await writeReadme(options);
},
],
[
"Updating local files",
async () => {
await updateLocalFiles(options);
},
],
[
"Updating all-contributors table",
async () => {
await updateAllContributorsTable(options);
},
],
]);
if (github) {
await withSpinner("Initializing GitHub repository", async () => {
await initializeGitHubRepository(github.octokit, options);
});
}
if (!options.excludeAllContributors && !options.skipAllContributorsApi) {
await withSpinner("Detecting existing contributors", async () =>
detectExistingContributors(github?.auth, options),
);
}
if (!options.skipInstall) {
await withSpinner("Installing packages", async () =>
finalizeDependencies(options),
);
}
if (!options.excludeLintSpelling) {
await withSpinner("Populating CSpell dictionary", populateCSpellDictionary);
}
await runCommands(
"Cleaning up files",
createCleanUpFilesCommands({
bin: !!options.bin,
dedupe: true,
}),
);
}