mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
14 lines
402 B
TypeScript
14 lines
402 B
TypeScript
import { sync as spawnSync } from 'cross-spawn';
|
|
|
|
type ExecOptions = Parameters<typeof spawnSync>[2];
|
|
|
|
export const exec = async (command: string, options: ExecOptions = {}) =>
|
|
new Promise((resolve, reject) => {
|
|
const x = spawnSync(command, options);
|
|
if (x.status === 0) {
|
|
resolve(undefined);
|
|
} else {
|
|
reject(new Error(`command exited with code: ${x.status}: `));
|
|
}
|
|
});
|