Skip to content

Commit 2f1bd38

Browse files
authored
refactor(step-by-step): change the default framework to Angular instead (#1574)
1 parent ca4c52f commit 2f1bd38

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/cli/lib/PromptSession.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export class PromptSession extends BasePromptSession {
6161
name: "framework",
6262
message: "Choose framework:",
6363
choices: this.getFrameworkNames(),
64-
default: "jQuery"
64+
default: "Angular"
6565
});
6666

6767
const framework = this.templateManager.getFrameworkByName(frameRes);

packages/core/prompt/BasePromptSession.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export abstract class BasePromptSession {
4747
name: "framework",
4848
message: "Choose framework:",
4949
choices: this.getFrameworkNames(),
50-
default: "jQuery"
50+
default: "Angular"
5151
});
5252

5353
const framework = this.templateManager.getFrameworkByName(frameRes);

0 commit comments

Comments
 (0)