-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathprintError.js
More file actions
49 lines (48 loc) · 1.38 KB
/
printError.js
File metadata and controls
49 lines (48 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import context from './context'
export default function (error) {
if (context.catch) {
context.catch(error)
}
const lines = error.stack.split(`\n`)
let initiator = lines.find((line) => line.indexOf('Proxy') > -1)
if (initiator) {
initiator = initiator.split('(')[0]
if (initiator) {
initiator = initiator.trim()
initiator = initiator.replace('at', '').trim()
}
}
let source = lines.find((line) => line.indexOf('webpack:') > -1)
if (source) {
source = source.split('webpack:')[1]
if (source) {
source = source.split('\\').join('/')
}
}
let file, line
if (source) {
const sourceAndLine = source.split(':')
file = sourceAndLine[0]
line = sourceAndLine[1]
let className = file.split('/').find((segment) => segment.indexOf('.') > -1)
if (className) {
className = className.replace('.njs', '')
if (initiator) {
initiator = initiator.replace('Proxy', className)
}
}
}
console.info()
console.info('\x1b[31m', error.name, '-', error.message, '\x1b[0m')
console.info()
if (initiator) {
console.info('\x1b[2m', 'initiator:', '\x1b[0m', '\x1b[37m', initiator, '\x1b[0m')
}
if (file) {
console.info('\x1b[2m', 'file: ', '\x1b[0m', '\x1b[37m', file, '\x1b[0m')
}
if (line) {
console.info('\x1b[2m', 'line: ', '\x1b[0m', '\x1b[37m', line, '\x1b[0m')
}
console.info()
}