mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
29 lines
831 B
TypeScript
29 lines
831 B
TypeScript
import { spawn } from 'child_process'
|
|
import chalk from 'chalk'
|
|
import consola from 'consola'
|
|
import { projRoot } from '@element-plus/build-utils'
|
|
|
|
export const run = async (command: string, cwd: string = projRoot) =>
|
|
new Promise<void>((resolve, reject) => {
|
|
const [cmd, ...args] = command.split(' ')
|
|
consola.info(`run: ${chalk.green(`${cmd} ${args.join(' ')}`)}`)
|
|
const app = spawn(cmd, args, {
|
|
cwd,
|
|
stdio: 'inherit',
|
|
shell: process.platform === 'win32',
|
|
})
|
|
|
|
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)
|
|
})
|