File tree 5 files changed +140
-0
lines changed
5 files changed +140
-0
lines changed Original file line number Diff line number Diff line change
1
+ import { describe , expect , it , vi } from "vitest" ;
2
+
3
+ import { getBase } from "./getBase.js" ;
4
+
5
+ const mockReadPackageData = vi . fn ( ) ;
6
+ vi . mock ( "../packages.js" , ( ) => ( {
7
+ get readPackageData ( ) {
8
+ return mockReadPackageData ;
9
+ } ,
10
+ } ) ) ;
11
+
12
+ describe ( "getBase" , ( ) => {
13
+ it ( "should return minimum with minimum scripts" , async ( ) => {
14
+ mockReadPackageData . mockImplementationOnce ( ( ) =>
15
+ Promise . resolve ( {
16
+ scripts : {
17
+ build : "build" ,
18
+ lint : "lint" ,
19
+ test : "test" ,
20
+ } ,
21
+ } ) ,
22
+ ) ;
23
+
24
+ expect ( await getBase ( ) ) . toBe ( "minimum" ) ;
25
+ } ) ;
26
+ it ( "should return common with common scripts" , async ( ) => {
27
+ mockReadPackageData . mockImplementationOnce ( ( ) =>
28
+ Promise . resolve ( {
29
+ scripts : {
30
+ build : "build" ,
31
+ lint : "lint" ,
32
+ "lint:knip" : "knip" ,
33
+ test : "test" ,
34
+ } ,
35
+ } ) ,
36
+ ) ;
37
+
38
+ expect ( await getBase ( ) ) . toBe ( "common" ) ;
39
+ } ) ;
40
+ it ( "should return everything with everything scripts" , async ( ) => {
41
+ mockReadPackageData . mockImplementationOnce ( ( ) =>
42
+ Promise . resolve ( {
43
+ scripts : {
44
+ build : "build" ,
45
+ lint : "lint" ,
46
+ "lint:knip" : "knip" ,
47
+ "lint:md" : "md" ,
48
+ "lint:package-json" : "package-json" ,
49
+ "lint:packages" : "packages" ,
50
+ test : "test" ,
51
+ } ,
52
+ } ) ,
53
+ ) ;
54
+
55
+ expect ( await getBase ( ) ) . toBe ( "everything" ) ;
56
+ } ) ;
57
+ } ) ;
Original file line number Diff line number Diff line change
1
+ import { readPackageData } from "../packages.js" ;
2
+ import { OptionsBase } from "../types.js" ;
3
+
4
+ const commonScripts = new Set ( [ "lint:knip" , "should-semantic-release" , "test" ] ) ;
5
+
6
+ const everythingScripts = new Set ( [
7
+ "lint:md" ,
8
+ "lint:package-json" ,
9
+ "lint:packages" ,
10
+ "lint:spelling" ,
11
+ ] ) ;
12
+ export async function getBase ( ) : Promise < OptionsBase > {
13
+ const scripts = Object . keys ( ( await readPackageData ( ) ) . scripts ?? { } ) ;
14
+
15
+ if (
16
+ scripts . reduce (
17
+ ( acc , curr ) => ( everythingScripts . has ( curr ) ? acc + 1 : acc ) ,
18
+ 0 ,
19
+ ) >= 3
20
+ ) {
21
+ return "everything" ;
22
+ }
23
+
24
+ if (
25
+ scripts . reduce (
26
+ ( acc , curr ) => ( commonScripts . has ( curr ) ? acc + 1 : acc ) ,
27
+ 0 ,
28
+ ) >= 2
29
+ ) {
30
+ return "common" ;
31
+ }
32
+
33
+ return "minimum" ;
34
+ }
Original file line number Diff line number Diff line change @@ -111,6 +111,13 @@ vi.mock("./createOptionDefaults/index.js", () => ({
111
111
} ,
112
112
} ) ) ;
113
113
114
+ const mockReadPackageData = vi . fn ( ) ;
115
+ vi . mock ( "../packages.js" , ( ) => ( {
116
+ get readPackageData ( ) {
117
+ return mockReadPackageData ;
118
+ } ,
119
+ } ) ) ;
120
+
114
121
describe ( "readOptions" , ( ) => {
115
122
it ( "returns a cancellation when an arg is invalid" , async ( ) => {
116
123
const validationResult = z
@@ -524,4 +531,40 @@ describe("readOptions", () => {
524
531
} ,
525
532
} ) ;
526
533
} ) ;
534
+
535
+ it ( "infers base from package scripts during migration" , async ( ) => {
536
+ mockReadPackageData . mockImplementationOnce ( ( ) =>
537
+ Promise . resolve ( {
538
+ scripts : {
539
+ build : "build" ,
540
+ lint : "lint" ,
541
+ test : "test" ,
542
+ } ,
543
+ } ) ,
544
+ ) ;
545
+ expect ( await readOptions ( [ "--offline" ] , "migrate" ) ) . toStrictEqual ( {
546
+ cancelled : false ,
547
+ github : mockOptions . github ,
548
+ options : {
549
+ ...emptyOptions ,
550
+ ...mockOptions ,
551
+ access : "public" ,
552
+ base : "minimum" ,
553
+ description : "mock" ,
554
+ directory : "mock" ,
555
+ email : {
556
+ github : "mock" ,
557
+ npm : "mock" ,
558
+ } ,
559
+ guide : undefined ,
560
+ logo : undefined ,
561
+ mode : "migrate" ,
562
+ offline : true ,
563
+ owner : "mock" ,
564
+ skipAllContributorsApi : true ,
565
+ skipGitHubApi : true ,
566
+ title : "mock" ,
567
+ } ,
568
+ } ) ;
569
+ } ) ;
527
570
} ) ;
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import { augmentOptionsWithExcludes } from "./augmentOptionsWithExcludes.js";
10
10
import { createOptionDefaults } from "./createOptionDefaults/index.js" ;
11
11
import { detectEmailRedundancy } from "./detectEmailRedundancy.js" ;
12
12
import { ensureRepositoryExists } from "./ensureRepositoryExists.js" ;
13
+ import { getBase } from "./getBase.js" ;
13
14
import { GitHub , getGitHub } from "./getGitHub.js" ;
14
15
import { getPrefillOrPromptedOption } from "./getPrefillOrPromptedOption.js" ;
15
16
import { optionsSchema } from "./optionsSchema.js" ;
@@ -44,6 +45,10 @@ export async function readOptions(
44
45
tokens : true ,
45
46
} ) ;
46
47
48
+ if ( mode === "migrate" && ! values . base ) {
49
+ values . base = await getBase ( ) ;
50
+ }
51
+
47
52
const mappedOptions = {
48
53
access : values . access ,
49
54
author : values . author ,
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ export interface PartialPackageData {
19
19
email ?: string ;
20
20
name ?: string ;
21
21
repository ?: { type : string ; url : string } | string ;
22
+ scripts ?: Record < string , string > ;
22
23
}
23
24
24
25
export type OptionsAccess = "public" | "restricted" ;
You can’t perform that action at this time.
0 commit comments