Skip to content

Commit

Permalink
Merge pull request #7 from edumudu/feat/show-install-log
Browse files Browse the repository at this point in the history
Show install command manager log
  • Loading branch information
edumudu authored Mar 18, 2022
2 parents b5beb0b + 782709b commit 9427ca5
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 9427ca5

Please sign in to comment.