在Mac上构建Ionic
项目会引发以下错误:Cannot find module 'ansi'
命令: ionic build android
堆栈跟踪
module.js:327
throw err;
^
Error: Cannot find module 'ansi'
at Function.Module._resolveFilename (module.js:325:15)
at Function.Module._load (module.js:276:25)
at Module.require (module.js:353:17)
at require (internal/module.js:12:17)
at Object.<anonymous> (/Users/bob/myapp/platforms/android/cordova/node_modules/cordova-common/src/CordovaLogger.js:20:12)
at Module._compile (module.js:409:26)
at Object.Module._extensions..js (module.js:416:10)
at Module.load (module.js:343:32)
at Function.Module._load (module.js:300:12)
at Module.require (module.js:353:17)
Error: /Users/bob/myapp/platforms/android/cordova/build: Command failed with exit code 1
N.B。只是安装丢失的模块并不起作用(即npm install ansi
),因为它抱怨其他缺少的模块...
答案 0 :(得分:1)
我不确定问题发生的原因(也许有人可以启发我),但删除并重新添加Android
平台可以解决问题。
即
ionic platform remove android
ionic platform add android