Skip to content

Commit

Permalink
change playground arg to play
Browse files Browse the repository at this point in the history
  • Loading branch information
hemedani committed Jun 21, 2021
1 parent 6431790 commit 3e02c99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions funql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export interface CommandArgs {
declaration?: boolean;
upgrade?: string;
_: (string | number)[];
playground?: boolean;
play?: boolean;
help?: boolean;
}

Expand Down Expand Up @@ -43,7 +43,7 @@ const runPlayground = async () => {

args.init && (await createProject(args.init));
args.declaration && (await generateDeclarations(true, true));
args.playground && (await runPlayground());
args.play && (await runPlayground());
args.help && (runHelp());

args.upgrade && (await upgrade(args.upgrade));

0 comments on commit 3e02c99

Please sign in to comment.