Skip to content
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

refactor(@angular-devkit/schematics): add more description to ng gene… #26602

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/schematics/angular/component/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"name": {
"type": "string",
"description": "The name of the component.",
"description": "The name of the component. The CLI creates a folder with provided name and creates component files inside the folder. The component selector uses {prexix}-{componentname} format. For new Angular apps {prefix} value is app.",
"$default": {
"$source": "argv",
"index": 0
Expand Down
2 changes: 1 addition & 1 deletion packages/schematics/angular/service/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"properties": {
"name": {
"type": "string",
"description": "The name of the service.",
"description": "The name of the service. The CLI creates a service and spec files, the files are generated inside src folder if path is not provided.",
"$default": {
"$source": "argv",
"index": 0
Expand Down