|
在生成开发rpk包成功的情况下,生成发布包失败
报错:
(node:2312) UnhandledPromiseRejectionWarning: unsupported object nor format
(node:2312) 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(). (rejection id: 1)
(node:2312) [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.
用过async, await语法
但是全部都包进过
try{
。。。。
} catch(err) {
console.info(JSON.stringify(err))
}
|
|