Skip to content

Commit

Permalink
feat: show npm pack output
Browse files Browse the repository at this point in the history
  • Loading branch information
edumudu committed Mar 15, 2022
1 parent f2c1cfd commit 2f5470b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/publish.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import chalk from 'chalk';
import { modulesRoot } from '../config/paths.mjs';

const publish = () => {
execSync(`npm pack --pack-destination ${modulesRoot}`);
execSync(`npm pack --pack-destination ${modulesRoot}`, { stdio: 'inherit' });

console.log(chalk.green('Package published successfully!'));
};
Expand Down

0 comments on commit 2f5470b

Please sign in to comment.