You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Related to this post comment #1038 (comment) the .bold() method doesn't work in terminals as the cli expects, this generates an error of type TypeError: Can't call method on undefined, that itself blocks the user to see the original error, many of us have had to get into the lib itself and remove that part of the code just to see the original error, and that repeats each time we update the ionic-cli.
The line in question is in /lib/node_modules/ionic/lib/utils/cordova.js:83 in other peoples pc, in my case is in /usr/local/lib/node_modules/ionic/lib/utils/cordova.js:83 which means is in the ionic-cli cordova utils, line 83.
This should be fixed now, for starters not all ionic devs are good enough to go edit this file in node_modules, most of them will never know or care about that particular problem, and as such will never know what's their real bug, and the ones like me that do know this issue exists is a nuisance to do this deletion each time we update the ionic-cli library.
The text was updated successfully, but these errors were encountered:
Related to this post comment #1038 (comment) the
.bold()
method doesn't work in terminals as the cli expects, this generates an error of typeTypeError: Can't call method on undefined
, that itself blocks the user to see the original error, many of us have had to get into the lib itself and remove that part of the code just to see the original error, and that repeats each time we update theionic-cli
.The line in question is in
/lib/node_modules/ionic/lib/utils/cordova.js:83
in other peoples pc, in my case is in/usr/local/lib/node_modules/ionic/lib/utils/cordova.js:83
which means is in theionic-cli
cordova utils, line 83.This should be fixed now, for starters not all ionic devs are good enough to go edit this file in
node_modules
, most of them will never know or care about that particular problem, and as such will never know what's their real bug, and the ones like me that do know this issue exists is a nuisance to do this deletion each time we update theionic-cli
library.The text was updated successfully, but these errors were encountered: