From a564d65564423a1030bb8d668ffae5b2dc883f85 Mon Sep 17 00:00:00 2001 From: Santosh Yadav Date: Wed, 6 Dec 2023 20:38:08 +0000 Subject: [PATCH] refactor(@angular-devkit/schematics): add more description to ng generate --- packages/schematics/angular/component/schema.json | 2 +- packages/schematics/angular/service/schema.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/schematics/angular/component/schema.json b/packages/schematics/angular/component/schema.json index e2e3914b41b9..8ba9bf65d842 100644 --- a/packages/schematics/angular/component/schema.json +++ b/packages/schematics/angular/component/schema.json @@ -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 diff --git a/packages/schematics/angular/service/schema.json b/packages/schematics/angular/service/schema.json index bd04386e6280..0e3f56f1068b 100644 --- a/packages/schematics/angular/service/schema.json +++ b/packages/schematics/angular/service/schema.json @@ -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