From af2f20d148a4591af51fb866c34067264a2e4a10 Mon Sep 17 00:00:00 2001 From: fatme Date: Mon, 1 Jul 2019 00:05:06 +0300 Subject: [PATCH] fix: release the console on deploy command Currently deploy command doesn't release the console as the watch option has default true value. --- lib/commands/deploy.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/commands/deploy.ts b/lib/commands/deploy.ts index 62a35ee7b4..aa7f613e95 100644 --- a/lib/commands/deploy.ts +++ b/lib/commands/deploy.ts @@ -6,6 +6,7 @@ export class DeployOnDeviceCommand extends ValidatePlatformCommandBase implement public allowedParameters: ICommandParameter[] = []; public dashedOptions = { + watch: { type: OptionType.Boolean, default: false, hasSensitiveValue: false }, hmr: { type: OptionType.Boolean, default: false, hasSensitiveValue: false }, };