mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-03 03:38:41 +08:00
29 lines
740 B
TypeScript
29 lines
740 B
TypeScript
import { spawn } from 'child_process'
|
|
import { green } from './log'
|
|
import { projRoot } from './paths'
|
|
|
|
export const run = async (command: string, cwd: string = projRoot) =>
|
|
new Promise<void>((resolve, reject) => {
|
|
const args = command.split(' ')
|
|
const cmd = args.shift()!
|
|
|
|
green(`run: ${cmd} ${args.join(' ')}`)
|
|
const app = spawn(cmd, args, {
|
|
cwd,
|
|
stdio: 'inherit',
|
|
})
|
|
|
|
const onProcessExit = () => app.kill('SIGHUP')
|
|
|
|
app.on('close', (code) => {
|
|
process.removeListener('exit', onProcessExit)
|
|
|
|
if (code === 0) resolve()
|
|
else
|
|
reject(
|
|
new Error(`Command failed. \n Command: ${command} \n Code: ${code}`)
|
|
)
|
|
})
|
|
process.on('exit', onProcessExit)
|
|
})
|