Skip to content

Commit 7ae6ec8

Browse files
committed
fix(CLI): include node types when user selects Node.js project
1 parent a89a03a commit 7ae6ec8

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

src/cli/inquire.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,15 @@ export async function inquire(): Promise<TypescriptStarterUserOptions> {
114114
description,
115115
extras,
116116
projectName,
117-
runner
117+
runner,
118+
type
118119
} = answers as {
119120
readonly definitions?: TypeDefinitions;
120121
readonly description: string;
121122
readonly extras: ReadonlyArray<string>;
122123
readonly projectName: string;
123124
readonly runner: Runner;
125+
readonly type: ProjectType;
124126
};
125127
return {
126128
description,
@@ -135,7 +137,7 @@ export async function inquire(): Promise<TypescriptStarterUserOptions> {
135137
? [TypeDefinitions.node, TypeDefinitions.nodeAndDom].includes(
136138
definitions
137139
)
138-
: false,
140+
: type === ProjectType.Node,
139141
projectName,
140142
runner,
141143
strict: extras.includes(Extras.strict),

src/cli/tests/cli.integration.spec.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -316,11 +316,15 @@ test(`${
316316
t.deepEqual(map, {
317317
'test-4/README.md': 'a3e0699b39498df4843c9dde95f1e000',
318318
'test-4/bin/typescript-starter': 'df05a2c6c849f47761f0e24230359d3e',
319-
'test-4/src/index.ts': '5991bedc40ac87a01d880c6db16fe349',
319+
'test-4/src/index.ts': 'fbc67c2cbf3a7d37e4e02583bf06eec9',
320+
'test-4/src/lib/async.spec.ts': '1e83b84de3f3b068244885219acb42bd',
321+
'test-4/src/lib/async.ts': '9012c267bb25fa98ad2561929de3d4e2',
322+
'test-4/src/lib/hash.spec.ts': '87bfca3c0116fd86a353750fcf585ecf',
323+
'test-4/src/lib/hash.ts': 'a4c552897f25da5963f410e375264bd1',
320324
'test-4/src/lib/number.spec.ts': '40ebb014eb7871d1f810c618aba1d589',
321325
'test-4/src/lib/number.ts': '43756f90e6ac0b1c4ee6c81d8ab969c7',
322326
'test-4/src/types/example.d.ts': '4221812f6f0434eec77ccb1fba1e3759',
323-
'test-4/tsconfig.json': '0e04adfce2f26c6473f079f6dabd108a',
327+
'test-4/tsconfig.json': 'e41d08f0aca16cb05430b61e4b6286db',
324328
'test-4/tsconfig.module.json': '2fda4c8760c6cfa3462b40df0645850d',
325329
'test-4/tslint.json': '99f6f8fa763bfc2a32377739b3e5dd5c'
326330
});

0 commit comments

Comments
 (0)