当前位置 : 主页 > 手机开发 > cordova >

Cordova 8 iOS 4.5.4 =找不到模块“../cordova/platform_metadata”

来源:互联网 收集:自由互联 发布时间:2021-06-10
自从Cordova v8的最新更新以来,我无法在Mac上构建任何东西. 我总是得到 (node 626) UnhandledPromiseRejectionWarning: Error: Cannot find module '../cordova/platform_metadata' 我尝试了this帖子中的建议,但我得到了
自从Cordova v8的最新更新以来,我无法在Mac上构建任何东西.
我总是得到

(node 626) UnhandledPromiseRejectionWarning: Error: Cannot find module '../cordova/platform_metadata'

我尝试了this帖子中的建议,但我得到了同样的错误.

然后我做了一个详细的,看起来为ios构建所需的插件效果不佳

Executing script found in plugin cordova-plugin-swift-support for hook "after_prepare": plugins/cordova-plugin-swift-support/src/add-swift-support.js
Resolving module name for cordova-lib/src/cordova/platform_metadata => ../cordova/platform_metadata
(node:599) UnhandledPromiseRejectionWarning: Unhandled promise rejection 
(rejection id: 1): Error: Cannot find module '../cordova/platform_metadata'
(node:599) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.
这是cordova-plugin-add-swift-support中的一个错误,只需将其更新到最新版本(1.7.1)

cordova plugin rm cordova-plugin-add-swift-support
cordova plugin add cordova-plugin-add-swift-support
网友评论