element-plus/build/utils/process.ts

28 lines
780 B
TypeScript
Raw Normal View History

2021-09-26 01:29:07 +08:00
import { spawn } from 'child_process'
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) => {
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',
shell: process.platform === 'win32',
2021-09-26 01:29:07 +08:00
})
const onProcessExit = () => app.kill('SIGHUP')
2021-09-26 01:29:07 +08:00
app.on('close', (code) => {
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}`)
)
})
process.on('exit', onProcessExit)
2021-09-26 01:29:07 +08:00
})