ci010 / electron-vue-next

A starter template for using vue-next with the electron.
https://ci010.github.io/electron-vue-next/
191 stars 27 forks source link

Catch errors in scripts #9

Closed cawa-93 closed 3 years ago

cawa-93 commented 3 years ago

I suggest adding some changes to the scripts. This will allow you to catch errors and display them in a clearer way. Now, in case of an error, a not very clear message is displayed:

(node:17788) UnhandledPromiseRejectionWarning: ReferenceError: FOOO is not defined
    at startMain (C:\Users\kozac\Dev\electron-vue-next\scripts\dev.js:93:15)
(Use `node --trace-warnings ...` to show where the warning was created)
(node:17788) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with
.catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:17788) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

I would like to make it cleaner and clearer:

ReferenceError: FOOO is not defined
    at startMain (C:\Users\kozac\Dev\electron-vue-next\scripts\dev.js:93:15)
    at async Promise.all (index 0)