Parcourir la source

Update core:start cli command to watch theme changes again (#15856)

Dominik Prokop il y a 6 ans
Parent
commit
312ce88e25
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      scripts/cli/index.ts

+ 1 - 1
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,
     });
   });