mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
make more noise, to see what breaks
This commit is contained in:
parent
32c49a9aa0
commit
c94140ba44
@ -60,9 +60,14 @@ export const exec = async (
|
||||
logger.debug(command);
|
||||
return new Promise((resolve, reject) => {
|
||||
const defaultOptions: ExecOptions = {
|
||||
silent: true,
|
||||
silent: false,
|
||||
};
|
||||
const child = shell.exec(command, { ...defaultOptions, ...options, async: true });
|
||||
const child = shell.exec(command, {
|
||||
...defaultOptions,
|
||||
...options,
|
||||
async: true,
|
||||
silent: false,
|
||||
});
|
||||
|
||||
child.stderr.pipe(process.stderr);
|
||||
child.stdout.pipe(process.stdout);
|
||||
|
Loading…
x
Reference in New Issue
Block a user