This repository was archived by the owner on Sep 12, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class FunctionsBuildCommand extends Command {
35
35
36
36
FunctionsBuildCommand . description = `build functions locally
37
37
`
38
-
38
+ FunctionsBuildCommand . aliases = [ 'function:build' ]
39
39
FunctionsBuildCommand . flags = {
40
40
functions : flags . string ( {
41
41
char : 'f' ,
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ FunctionsCreateCommand.examples = [
45
45
'netlify functions:create hello-world' ,
46
46
'netlify functions:create --name hello-world'
47
47
]
48
-
48
+ FunctionsCreateCommand . aliases = [ 'function:create' ]
49
49
FunctionsCreateCommand . flags = {
50
50
name : flags . string ( { char : 'n' , description : 'function name' } ) ,
51
51
functions : flags . string ( { char : 'f' , description : 'functions folder' } ) ,
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class FunctionsCommand extends Command {
33
33
}
34
34
35
35
const name = chalk . greenBright ( '`functions`' )
36
-
36
+ FunctionsCommand . aliases = [ 'function' ]
37
37
FunctionsCommand . description = `Manage netlify functions
38
38
The ${ name } command will help you manage the functions in this site
39
39
`
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ FunctionsListCommand.description = `list sites
18
18
...
19
19
Extra documentation goes here
20
20
`
21
-
21
+ FunctionsListCommand . aliases = [ 'function:list' ]
22
22
FunctionsListCommand . flags = {
23
23
name : flags . string ( { char : 'n' , description : 'name to print' } )
24
24
}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ FunctionsServeCommand.description = `serve functions locally for dev
10
10
...
11
11
Extra documentation goes here
12
12
`
13
-
13
+ FunctionsServeCommand . aliases = [ 'function:serve' ]
14
14
FunctionsServeCommand . flags = {
15
15
name : flags . string ( { char : 'n' , description : 'name to print' } )
16
16
}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ FunctionsUpdateCommand.description = `update a function
10
10
...
11
11
Extra documentation goes here
12
12
`
13
-
13
+ FunctionsUpdateCommand . aliases = [ 'function:update' ]
14
14
FunctionsUpdateCommand . flags = {
15
15
name : flags . string ( { char : 'n' , description : 'name to print' } )
16
16
}
You can’t perform that action at this time.
0 commit comments