-
Notifications
You must be signed in to change notification settings - Fork 467
xml2js is not installed #35
Comments
@zwacky can you provide step-by-step guide on how to reproduce it? |
i just tried it and if i use
|
What ionic version you are using? |
ionic -v
|
Just tried the following: ionic start Test blank
cd ./Test
ionic platform add ios
ionic platform add android
ionic plugin add cordova-hot-code-push-plugin And it installed all the required modules. You do the same and get the error? |
installing from a fresh install does work. sigh. |
Closing that weird issue. Released v1.1.0, made some changes in the node modules installation process. |
it seems that the plugin install xml2js in local folder, it seems it doesn't go find the globally installed xml2js. |
This behaviour will change in next release: plugin will install required npm modules in plugin's folder instead of the project's folder. Just like regular npm modules does that. |
I had the same issue and I solved with this command "npm install xml2js --save" |
Issue from pull request #33.
In some cases after executing
ionic platform add iOS
we can get the following error:node -v
npm -v
For some reasons node module
xml2js
is not installed.As a solution you can just add it manually:
But this should be done by the plugin after the installation.
The text was updated successfully, but these errors were encountered: