Plugin error while building ionic app

2020-03-18 08:03发布

during build ionic app, this error is shown:

Error occurred during command execution from a CLI plugin (@ionic/cli-plugin-cordova). Your plugins may be out of date. TypeError: env.runcmd is not a function

2条回答
做自己的国王
2楼-- · 2020-03-18 08:55

If you have ionic cli version lower than 3.6.0 try to update it. It resolved the issue for me.

查看更多
老娘就宠你
3楼-- · 2020-03-18 08:59

This error message indicates that the Ionic CLI version is incompatible with other CLI plugins (see https://github.com/ionic-team/ionic/issues/12561).

Please run the following commands in your project directory (where you package.json is):

npm i -g ionic@latest
npm i --save-dev --save-exact ionic@latest

This will install the latest Ionic CLI version (currently 3.7.0) globally and locally. After that the error should no longer occur.

查看更多
登录 后发表回答