40 lines
996 B
TypeScript
40 lines
996 B
TypeScript
import { isPromise } from 'node:util/types'
|
|
import path from 'node:path'
|
|
import { createRequire } from 'node:module'
|
|
import { fileURLToPath } from 'node:url'
|
|
import { ExecSyncOptions, execSync } from 'node:child_process'
|
|
import consola from 'consola'
|
|
|
|
export const __dirname = fileURLToPath(new URL('../', import.meta.url))
|
|
export const require = createRequire(import.meta.url)
|
|
export const pkgPath = path.resolve(__dirname, 'package.json')
|
|
export const distPath = path.resolve(__dirname, 'dist')
|
|
|
|
export const resolve = (...paths: string[]) => path.resolve(__dirname, ...paths)
|
|
|
|
export const exec = (command: string, options: ExecSyncOptions = {}) =>
|
|
execSync(command, {
|
|
stdio: 'inherit',
|
|
encoding: 'utf-8',
|
|
...options,
|
|
})
|
|
|
|
export const getPkgJSON = () => require(pkgPath)
|
|
|
|
export function safeExit(run: () => unknown) {
|
|
try {
|
|
const p = run()
|
|
|
|
if (isPromise(p)) {
|
|
return p.catch(exit)
|
|
}
|
|
} catch {
|
|
exit()
|
|
}
|
|
}
|
|
|
|
function exit() {
|
|
consola.error('已退出')
|
|
process.exit()
|
|
}
|