Skip to content

Commit

Permalink
Merge pull request #1945 from HurSungYun/reorder_help_msg
Browse files Browse the repository at this point in the history
chore: sort schematics in help message
  • Loading branch information
kamilmysliwiec committed Mar 17, 2023
2 parents 69718d6 + 4099308 commit 01eacd7
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions lib/schematics/nest.collection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ export class NestCollection extends AbstractCollection {
alias: 'itf',
description: 'Generate an interface',
},
{
name: 'library',
alias: 'lib',
description: 'Generate a new library within a monorepo',
},
{
name: 'middleware',
alias: 'mi',
Expand All @@ -90,26 +95,21 @@ export class NestCollection extends AbstractCollection {
alias: 'r',
description: 'Generate a GraphQL resolver declaration',
},
{
name: 'resource',
alias: 'res',
description: 'Generate a new CRUD resource',
},
{
name: 'service',
alias: 's',
description: 'Generate a service declaration',
},
{
name: 'library',
alias: 'lib',
description: 'Generate a new library within a monorepo',
},
{
name: 'sub-app',
alias: 'app',
description: 'Generate a new application within a monorepo',
},
{
name: 'resource',
alias: 'res',
description: 'Generate a new CRUD resource',
},
];

constructor(runner: AbstractRunner) {
Expand Down

0 comments on commit 01eacd7

Please sign in to comment.