We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e0e119 commit 0b80306Copy full SHA for 0b80306
packages/app/src/cli/commands/app/function/info.ts
@@ -50,12 +50,16 @@ export default class FunctionInfo extends AppUnlinkedCommand {
50
51
if (flags.json) {
52
outputResult(
53
- JSON.stringify({
54
- functionRunnerPath: functionRunner.path,
55
- targeting,
56
- schemaPath,
57
- wasmPath: ourFunction.outputPath,
58
- }),
+ JSON.stringify(
+ {
+ functionRunnerPath: functionRunner.path,
+ targeting,
+ schemaPath,
+ wasmPath: ourFunction.outputPath,
59
+ },
60
+ null,
61
+ 2,
62
+ ),
63
)
64
} else {
65
outputResult(`functionRunnerPath: ${functionRunner.path}`)
0 commit comments