File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 9
9
import { runOrRestore } from "../shared/runOrRestore.js" ;
10
10
import { clearUnnecessaryFiles } from "./steps/clearUnnecessaryFiles.js" ;
11
11
import { detectExistingContributors } from "./steps/detectExistingContributors.js" ;
12
- import { finalizeDependencies as finalizeDependencies } from "./steps/finalizeDependencies.js" ;
12
+ import { finalizeDependencies } from "./steps/finalizeDependencies.js" ;
13
13
import { runCommand } from "./steps/runCommand.js" ;
14
14
import { writeReadme } from "./steps/writeReadme.js" ;
15
15
import { writeStructure } from "./steps/writing/writeStructure.js" ;
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export async function finalizeDependencies({
57
57
58
58
for ( const command of [
59
59
`pnpm add ${ devDependencies . map ( atLatest ) . join ( " " ) } -D` ,
60
- `npx all-contributors generate` ,
60
+ `npx all-contributors-cli generate` ,
61
61
`pnpm uninstall all-contributors-cli all-contributors-for-repository -D` ,
62
62
"pnpm run format:write" ,
63
63
] ) {
Original file line number Diff line number Diff line change
1
+ import { $ } from "execa" ;
1
2
import fs from "node:fs/promises" ;
2
3
import prettier from "prettier" ;
3
4
@@ -22,4 +23,6 @@ export async function updateAllContributorsTable({
22
23
{ parser : "json" } ,
23
24
) ,
24
25
) ;
26
+
27
+ await $ `npx all-contributors-cli generate` ;
25
28
}
You can’t perform that action at this time.
0 commit comments