@@ -3,14 +3,14 @@ import { execaCommand } from "execa";
3
3
import gitRemoteOriginUrl from "git-remote-origin-url" ;
4
4
import gitUrlParse from "git-url-parse" ;
5
5
import { inputFromFile } from "input-from-file" ;
6
- import { inputFromFileJSON } from "input-from-file-json" ;
7
6
import { inputFromScript } from "input-from-script" ;
8
7
import lazyValue from "lazy-value" ;
9
8
import npmUser from "npm-user" ;
10
9
import { z } from "zod" ;
11
10
12
11
import { inputFromOctokit } from "./inputs/inputFromOctokit.js" ;
13
12
import { parsePackageAuthor } from "./options/parsePackageAuthor.js" ;
13
+ import { readAllContributors } from "./options/readAllContributors.js" ;
14
14
import { readDefaultsFromReadme } from "./options/readDefaultsFromReadme.js" ;
15
15
import { readDescription } from "./options/readDescription.js" ;
16
16
import { readDocumentation } from "./options/readDocumentation.js" ;
@@ -19,7 +19,6 @@ import { readFileSafe } from "./options/readFileSafe.js";
19
19
import { readFunding } from "./options/readFunding.js" ;
20
20
import { readGuide } from "./options/readGuide.js" ;
21
21
import { readPackageData } from "./options/readPackageData.js" ;
22
- import { AllContributorsData } from "./types.js" ;
23
22
import { swallowError } from "./utils/swallowError.js" ;
24
23
import { tryCatchLazyValueAsync } from "./utils/tryCatchLazyValueAsync.js" ;
25
24
@@ -141,14 +140,7 @@ export const base = createBase({
141
140
. describe ( "package version to publish as and store in `package.json`" ) ,
142
141
} ,
143
142
prepare ( { options, take } ) {
144
- const allContributors = lazyValue ( async ( ) => {
145
- const contributions = ( await take ( inputFromFileJSON , {
146
- filePath : ".all-contributorsrc" ,
147
- } ) ) as AllContributorsData ;
148
-
149
- return contributions . contributors ;
150
- } ) ;
151
-
143
+ const allContributors = lazyValue ( async ( ) => readAllContributors ( take ) ) ;
152
144
const documentation = lazyValue ( async ( ) => readDocumentation ( take ) ) ;
153
145
154
146
const nvmrc = lazyValue (
@@ -232,14 +224,16 @@ export const base = createBase({
232
224
options . directory ,
233
225
) ;
234
226
227
+ const email = lazyValue ( async ( ) => readEmails ( npmDefaults , packageAuthor ) ) ;
228
+
235
229
return {
236
230
access : "public" as const ,
237
231
author,
238
232
bin : async ( ) => ( await packageData ( ) ) . bin ,
239
233
contributors : allContributors ,
240
234
description : async ( ) => await readDescription ( packageData , readme ) ,
241
235
documentation,
242
- email : async ( ) => readEmails ( npmDefaults , packageAuthor ) ,
236
+ email,
243
237
funding : readFunding ,
244
238
guide : readGuide ,
245
239
login : author ,
0 commit comments