Skip to content

Commit

Permalink
use deprecated group
Browse files Browse the repository at this point in the history
  • Loading branch information
liamdebeasi committed Dec 12, 2023
1 parent f974adf commit 0c1c6b3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/@ionic/cli/src/commands/ssl/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class SSLGenerateCommand extends SSLBaseCommand implements CommandPreRun
return {
name: 'generate',
type: 'project',
summary: 'Generates an SSL key & certificate (Deprecated)',
summary: 'Generates an SSL key & certificate',
// TODO: document how to add trusted certs
description: `
Uses OpenSSL to create a self-signed certificate for ${strong('localhost')} (by default).
Expand Down Expand Up @@ -112,7 +112,7 @@ Deprecated. Developers should generate an SSL certificate locally and then confi
groups: [MetadataGroup.ADVANCED],
},
],
groups: [MetadataGroup.EXPERIMENTAL],
groups: [MetadataGroup.DEPRECATED],
};
}

Expand Down
2 changes: 1 addition & 1 deletion packages/@ionic/cli/src/commands/ssl/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export class SSLNamespace extends Namespace {
return {
name: 'ssl',
summary: 'Commands for managing SSL keys & certificates',
groups: [MetadataGroup.EXPERIMENTAL],
groups: [MetadataGroup.DEPRECATED],
description: `
These commands make it easy to manage SSL certificates for using HTTPS with ${input('ionic serve')}.
`,
Expand Down
2 changes: 1 addition & 1 deletion packages/@ionic/cli/src/lib/project/angular/serve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ The dev server can use HTTPS via the ${input('--ssl')} option ${chalk.bold.red('
name: 'ssl',
summary: 'Use HTTPS for the dev server',
type: Boolean,
groups: [MetadataGroup.EXPERIMENTAL, 'cordova'],
groups: [MetadataGroup.DEPRECATED, 'cordova'],
hint: weak('[ng]'),
},
{
Expand Down

0 comments on commit 0c1c6b3

Please sign in to comment.