From 07c522385f68a6e46fb463552679f15d01dbd8f2 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Sun, 12 Dec 2021 12:03:10 +0100 Subject: [PATCH] fixed yargs deprecation warnings --- app/lib/cli.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/cli.ts b/app/lib/cli.ts index d0729cd7..b5f6f95c 100644 --- a/app/lib/cli.ts +++ b/app/lib/cli.ts @@ -25,7 +25,7 @@ export function parseArgs (argv: string[], cwd: string): any { type: 'string', }) }) - .version('version', '', app.getVersion()) + .version(app.getVersion()) .option('debug', { alias: 'd', describe: 'Show DevTools on start',