Skip to content

Commit 7ba12c8

Browse files
committed
feat(core): add Custom starter option to access preset flow
Adds a 'Custom' option to the starter selection that redirects to the original preset-based flow, giving users access to more configuration options including: - Framework selection - Test runner choices - Bundler options - And other preset-specific configurations When 'Custom' is selected, the flow returns 'skip' which triggers the preset flow instead of the template flow.
1 parent ba9b0a6 commit 7ba12c8

File tree

1 file changed

+5
-0
lines changed
  • packages/create-nx-workspace/src/internal-utils

1 file changed

+5
-0
lines changed

packages/create-nx-workspace/src/internal-utils/prompts.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,11 @@ export async function determineTemplate(
147147
message:
148148
'Angular (fullstack monorepo with Angular and Express)',
149149
},
150+
{
151+
name: 'skip',
152+
message:
153+
'Custom (more options for framework, test runners, etc.)',
154+
},
150155
],
151156
initial: 0,
152157
},

0 commit comments

Comments
 (0)