From 91ee5fec14c595581d4621918f98caf9840e4b56 Mon Sep 17 00:00:00 2001 From: Esteban Beltran Date: Thu, 27 Oct 2022 15:05:32 +0200 Subject: [PATCH] Toolkit: Deprecate `plugin:update-circleci` command (#57743) --- packages/grafana-toolkit/src/cli/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/grafana-toolkit/src/cli/index.ts b/packages/grafana-toolkit/src/cli/index.ts index 82e6c8eb20a..2af7de36734 100644 --- a/packages/grafana-toolkit/src/cli/index.ts +++ b/packages/grafana-toolkit/src/cli/index.ts @@ -247,6 +247,9 @@ export const run = (includeInternalScripts = false) => { .command('plugin:update-circleci') .description('Update plugin') .action(async (cmd) => { + chalk.yellow.bold( + `⚠️ This command is deprecated and will be removed in v10. No further support will be provided. ⚠️` + ); await execTask(pluginUpdateTask)({}); });