File tree 11 files changed +12
-1
lines changed
11 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const getFiles = Blueprint.prototype.files;
8
8
9
9
export default Blueprint . extend ( {
10
10
description : '' ,
11
+ aliases : [ 'cl' ] ,
11
12
12
13
availableOptions : [
13
14
{
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ const astUtils = require('../../utilities/ast-utils');
14
14
15
15
export default Blueprint . extend ( {
16
16
description : '' ,
17
+ aliases : [ 'c' ] ,
17
18
18
19
availableOptions : [
19
20
{
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ const getFiles = Blueprint.prototype.files;
14
14
15
15
export default Blueprint . extend ( {
16
16
description : '' ,
17
+ aliases : [ 'd' ] ,
17
18
18
19
availableOptions : [
19
20
{
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ const Blueprint = require('../../ember-cli/lib/models/blueprint');
6
6
7
7
export default Blueprint . extend ( {
8
8
description : '' ,
9
+ aliases : [ 'e' ] ,
9
10
10
11
availableOptions : [
11
12
{
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ const getFiles = Blueprint.prototype.files;
14
14
15
15
export default Blueprint . extend ( {
16
16
description : '' ,
17
+ aliases : [ 'g' ] ,
17
18
18
19
availableOptions : [
19
20
{
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ const Blueprint = require('../../ember-cli/lib/models/blueprint');
7
7
8
8
export default Blueprint . extend ( {
9
9
description : '' ,
10
+ aliases : [ 'i' ] ,
10
11
11
12
anonymousOptions : [
12
13
'<interface-type>'
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const getFiles = Blueprint.prototype.files;
8
8
9
9
export default Blueprint . extend ( {
10
10
description : '' ,
11
+ aliases : [ 'm' ] ,
11
12
12
13
availableOptions : [
13
14
{
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ const getFiles = Blueprint.prototype.files;
14
14
15
15
export default Blueprint . extend ( {
16
16
description : '' ,
17
+ aliases : [ 'p' ] ,
17
18
18
19
availableOptions : [
19
20
{
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ const getFiles = Blueprint.prototype.files;
14
14
15
15
export default Blueprint . extend ( {
16
16
description : '' ,
17
+ aliases : [ 's' ] ,
17
18
18
19
availableOptions : [
19
20
{
Original file line number Diff line number Diff line change @@ -61,7 +61,8 @@ const aliasMap: { [alias: string]: string } = {
61
61
'm' : 'module' ,
62
62
'p' : 'pipe' ,
63
63
'r' : 'route' ,
64
- 's' : 'service'
64
+ 's' : 'service' ,
65
+ 'g' : 'guard'
65
66
} ;
66
67
67
68
export default GenerateCommand ;
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ var commandProperties = [
10
10
] ;
11
11
var blueprintProperties = [
12
12
'name' ,
13
+ 'aliases' ,
13
14
'description' ,
14
15
'availableOptions' ,
15
16
'anonymousOptions' ,
You can’t perform that action at this time.
0 commit comments