Hi,
When I run
sudo npm install -g cordova
I get the following message :
npm WARN unmet dependency which is version 2.1.0-dev.20160913
npm ERR! Darwin 15.4.0
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" "-g" "cordova"
npm ERR! node v4.1.1
npm ERR! npm v2.14.4
npm ERR! code EPEERINVALID
npm ERR! peerinvalid The package typescript@2.1.0-dev.20160724 does not satisfy its siblings' peerDependencies requirements!
npm ERR! peerinvalid Peer byots@2.1.0-dev.20160724.9.14 wants typescript@*
I added the latest version of Typescript to my package.json (v1.8) and still having issues
"dependencies": {
"@ionic/cloud": "^0.8.1",
"bluebird": "^3.4.5",
"byots": "2.1.0-dev.20160724.9.14",
"gulp": "^3.5.6",
"gulp-concat": "^2.2.0",
"gulp-minify-css": "^0.3.0",
"gulp-rename": "^1.2.0",
"gulp-sass": "^2.0.4",
"typescript": "^1.8.10"
},
"devDependencies": {
"bower": "^1.3.3",
"gulp-util": "^2.2.14",
"shelljs": "^0.3.0",
"webdriverio": "^4.0.9"
},
"cordovaPlugins": [
"cordova-plugin-device",
"cordova-plugin-console",
"cordova-plugin-whitelist",
"cordova-plugin-splashscreen",
"cordova-plugin-statusbar",
"ionic-plugin-keyboard",
"ionic-plugin-deploy"
],
"cordovaPlatforms": [
"ios"
]
Not sure how to proceed from here. Any advice would be helpful