Skip to content

Commit

Permalink
chore(cli): only run plugin/tool installer if there is any to install
Browse files Browse the repository at this point in the history
  • Loading branch information
trobonox committed Jul 20, 2024
1 parent ee30285 commit 0bcb89b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/cli/src/modules/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ const setupWizard = async (templateLink: string) => {
}

// go through all integrations if custom or any present is selected and install/configure them
await installProjectIntegrations(projectDir, extraPackages);
if (extraPackages.length > 0) {
await installProjectIntegrations(projectDir, extraPackages);
}

const shouldInstallDependencies = await confirm({
message: "Do you want to install dependencies?",
Expand Down

0 comments on commit 0bcb89b

Please sign in to comment.