From a51b5f5fa241818fa10f0886719f773dfc3aa025 Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Wed, 19 May 2021 18:52:54 +0200 Subject: [PATCH] fix: Add status-bar to plugins installed on capacitor integration --- packages/@ionic/cli/src/lib/integrations/capacitor/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@ionic/cli/src/lib/integrations/capacitor/index.ts b/packages/@ionic/cli/src/lib/integrations/capacitor/index.ts index a49fc1e68c..8d2455cf7a 100644 --- a/packages/@ionic/cli/src/lib/integrations/capacitor/index.ts +++ b/packages/@ionic/cli/src/lib/integrations/capacitor/index.ts @@ -108,7 +108,7 @@ export class Integration extends BaseIntegration { } async installCapacitorPlugins() { - const [ manager, ...managerArgs ] = await pkgManagerArgs(this.e.config.get('npmClient'), { command: 'install', pkg: ['@capacitor/haptics', '@capacitor/app', '@capacitor/keyboard'] }); + const [ manager, ...managerArgs ] = await pkgManagerArgs(this.e.config.get('npmClient'), { command: 'install', pkg: ['@capacitor/haptics', '@capacitor/app', '@capacitor/keyboard', '@capacitor/status-bar'] }); await this.e.shell.run(manager, managerArgs, { cwd: this.root }); }