-
Notifications
You must be signed in to change notification settings - Fork 8
chage(cli): rename completeAndRun to complete and install and update… #1733
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
4c0d1a6
b2a1c32
085fd8a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -56,8 +56,8 @@ export class SchematicsPromptSession extends BasePromptSession { | |
| return super.nameIsValid(name, checkFolder); | ||
| } | ||
|
|
||
| protected completeAndRun(_port?: number) { | ||
| // TODO? | ||
| protected async complete() { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe we should get rid of this no-op method. It seems it's a dead end for 7 years now
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removing it would cause a TypeScript compile error. The empty body is the intentional no-op implementation for the schematics context. |
||
| // No-op: package installation is managed by the Angular CLI schematic runner | ||
| } | ||
|
|
||
| protected async configureAI(_frameworkId: string): Promise<void> { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot has a point
