You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
254 B
10 lines
254 B
3 years ago
|
exports.exitProcess = !process.env.VUE_CLI_API_MODE && !process.env.VUE_CLI_TEST
|
||
|
|
||
|
exports.exit = function (code) {
|
||
|
if (exports.exitProcess) {
|
||
|
process.exit(code)
|
||
|
} else if (code > 0) {
|
||
|
throw new Error(`Process exited with code ${code}`)
|
||
|
}
|
||
|
}
|