Skip to content

Commit

Permalink
fix: line length
Browse files Browse the repository at this point in the history
  • Loading branch information
BelfordZ committed May 6, 2019
1 parent 6a87ff9 commit 4747583
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ import { parseOpenRPCDocument } from "@open-rpc/schema-utils-js";

program
.version(require('../../package.json').version, '-v, --version')
.option("-d, --document [openrpcDocument]", "JSON string or a Path/Url pointing to an open rpc schema", "./openrpc.json")
.option(
"-d, --document [openrpcDocument]",
"JSON string or a Path/Url pointing to an open rpc schema",
"./openrpc.json"
)
.action(async () => {
const openrpcDocument = await parseOpenRPCDocument(program.document);

Expand Down

0 comments on commit 4747583

Please sign in to comment.