mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-06 13:11:57 -05:00
11 lines
307 B
JavaScript
11 lines
307 B
JavaScript
module.exports = function err (error) {
|
|
console.error('')
|
|
if (error.host && error.path) {
|
|
console.error('' + error.message)
|
|
console.error('' + error.method + ' ' + error.host + error.path)
|
|
} else {
|
|
console.error('Error: ' + (error.stack || error.message || error))
|
|
}
|
|
process.exit(1)
|
|
}
|