Skip to content

Commit

Permalink
feat: show install command manager log
Browse files Browse the repository at this point in the history
  • Loading branch information
edumudu committed Mar 18, 2022
1 parent b5beb0b commit 782709b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/commands/install.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const install = (packageName) => {
process.exit(1);
}

execSync(`npm install ${tarballPath}`);
execSync(`npm install ${tarballPath}`, { stdio: 'inherit' });
console.log(chalk.green('Package installed successfully!'));
};

Expand Down

0 comments on commit 782709b

Please sign in to comment.