From 312ce88e2528b8f6ef04b2b0299d4a54981c595c Mon Sep 17 00:00:00 2001 From: Dominik Prokop Date: Thu, 7 Mar 2019 13:12:10 +0100 Subject: [PATCH] Update core:start cli command to watch theme changes again (#15856) --- scripts/cli/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cli/index.ts b/scripts/cli/index.ts index ced56e1eacd..301592315bc 100644 --- a/scripts/cli/index.ts +++ b/scripts/cli/index.ts @@ -16,7 +16,7 @@ program .description('Starts Grafana front-end in development mode with watch enabled') .action(async cmd => { await execTask(startTask)({ - watchThemes: cmd.theme, + watchThemes: cmd.watchTheme, hot: cmd.hot, }); });