Skip to content

Commit

Permalink
chore: sort schematics in help message
Browse files Browse the repository at this point in the history
  • Loading branch information
HurSungYun committed Feb 23, 2023
1 parent 384f4e4 commit 4099308
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 4099308

Please sign in to comment.