2021-09-26 01:29:07 +08:00
|
|
|
import { spawn } from 'child_process'
|
2021-10-25 17:07:48 +08:00
|
|
|
import { green } from 'chalk'
|
2021-09-26 01:29:07 +08:00
|
|
|
import { projRoot } from './paths'
|
|
|
|
|
|
|
|
export const run = async (command: string, cwd: string = projRoot) =>
|
|
|
|
new Promise<void>((resolve, reject) => {
|
2021-10-25 17:07:48 +08:00
|
|
|
const [cmd, ...args] = command.split(' ')
|
|
|
|
console.log(`run: ${green(`${cmd} ${args.join(' ')}`)}`)
|
2021-09-26 01:29:07 +08:00
|
|
|
const app = spawn(cmd, args, {
|
|
|
|
cwd,
|
|
|
|
stdio: 'inherit',
|
2021-10-20 09:45:47 +08:00
|
|
|
shell: process.platform === 'win32',
|
2021-09-26 01:29:07 +08:00
|
|
|
})
|
2021-09-26 13:53:59 +08:00
|
|
|
|
|
|
|
const onProcessExit = () => app.kill('SIGHUP')
|
|
|
|
|
2021-09-26 01:29:07 +08:00
|
|
|
app.on('close', (code) => {
|
2021-09-26 13:53:59 +08:00
|
|
|
process.removeListener('exit', onProcessExit)
|
|
|
|
|
2021-09-26 01:29:07 +08:00
|
|
|
if (code === 0) resolve()
|
|
|
|
else
|
|
|
|
reject(
|
|
|
|
new Error(`Command failed. \n Command: ${command} \n Code: ${code}`)
|
|
|
|
)
|
|
|
|
})
|
2021-09-26 13:53:59 +08:00
|
|
|
process.on('exit', onProcessExit)
|
2021-09-26 01:29:07 +08:00
|
|
|
})
|