We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 286917f commit dd2fd86Copy full SHA for dd2fd86
1 file changed
packages/ionic/src/lib/integrations/capacitor/index.ts
@@ -60,7 +60,7 @@ export class Integration extends BaseIntegration<ProjectIntegration> {
60
}
61
62
async installCapacitorCLI() {
63
- const [ manager, ...managerArgs ] = await pkgManagerArgs(this.e.config.get('npmClient'), { command: 'install', pkg: '@capacitor/cli' });
+ const [ manager, ...managerArgs ] = await pkgManagerArgs(this.e.config.get('npmClient'), { command: 'install', pkg: '@capacitor/cli', saveDev: true });
64
await this.e.shell.run(manager, managerArgs, { cwd: this.e.project.directory });
65
66
0 commit comments