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.
|
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}`) |
|
} |
|
}
|
|
|