Skip to content
This repository was archived by the owner on Sep 12, 2019. It is now read-only.

Commit bdb6f97

Browse files
committed
format flags
1 parent 9aae3d4 commit bdb6f97

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

src/commands/functions/invoke.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,10 @@ FunctionsInvokeCommand.args = [
231231
];
232232

233233
FunctionsInvokeCommand.flags = {
234-
name: flags.string({ char: "n", description: "function name to invoke" }),
234+
name: flags.string({
235+
char: "n",
236+
description: "function name to invoke"
237+
}),
235238
functions: flags.string({
236239
char: "f",
237240
description: "Specify a functions folder to parse, overriding netlify.toml"

src/commands/functions/list.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,10 @@ NOT the same as listing the functions that have been deployed. For that info you
8888
`;
8989
FunctionsListCommand.aliases = ["function:list"];
9090
FunctionsListCommand.flags = {
91-
name: flags.string({ char: "n", description: "name to print" }),
91+
name: flags.string({
92+
char: "n",
93+
description: "name to print"
94+
}),
9295
functions: flags.string({
9396
char: "f",
9497
description: "Specify a functions folder to serve"

0 commit comments

Comments
 (0)