Skip to content

Commit 61c3b2b

Browse files
authored
docs: custom titles and descriptions from SEO consultant (#4735)
1 parent 6dca236 commit 61c3b2b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/@ionic/cli/src/commands/cordova/build.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ export class BuildCommand extends CordovaCommand implements CommandPreRun {
4343
return {
4444
name: 'build',
4545
type: 'project',
46-
summary: 'Build (prepare + compile) an Ionic project for a given platform',
46+
summary: 'Use Cordova to build for Android and iOS platform targets',
4747
description: `
48-
Like running ${input('cordova build')} directly, but also builds web assets with configuration from ${input('ionic build')} and provides friendly checks.
48+
Like running ${input('cordova build')} directly, ${input('ionic cordova build')} also builds web assets from ${input('ionic build')} and provides friendly checks for Android and iOS platforms.
4949
5050
To pass additional options to the Cordova CLI, use the ${input('--')} separator after the Ionic CLI arguments.
5151

packages/@ionic/cli/src/commands/generate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class GenerateCommand extends Command implements CommandPreRun {
3535
return {
3636
name: 'generate',
3737
type: 'project',
38-
summary: 'Automatically create framework features',
38+
summary: 'Create Pages, Components, & Angular Features',
3939
description,
4040
footnotes,
4141
inputs,

packages/@ionic/cli/src/lib/project/angular/generate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class AngularGenerateRunner extends GenerateRunner<AngularGenerateOptions
3939
async getCommandMetadata(): Promise<Partial<CommandMetadata>> {
4040
return {
4141
description: `
42-
This command uses the Angular CLI to generate features such as ${['pages', 'components', 'directives', 'services'].map(c => input(c)).join(', ')}, etc.
42+
Automatically create framework features with Ionic Generate. This command uses the Angular CLI to generate features such as ${['pages', 'components', 'directives', 'services'].map(c => input(c)).join(', ')}, and more.
4343
4444
- For a full list of available types, use ${input('npx ng g --help')}
4545
- For a list of options for a types, use ${input('npx ng g <type> --help')}

0 commit comments

Comments
 (0)