Added cordova-lib to coho repo list --- but I haven't figured out which lists it needs to go in yet, so that will need to be updated for releases etc.
Mark, I noticed that cordova-lib is in CLI package.json deps, but not for plugman. I imagine thats an oversight? Also, if you npm install before npm link cordova-lib, it will fail since there is no published version yet. Its not a problem. On Fri, May 2, 2014 at 3:36 PM, Naik, Archana <[email protected]> wrote: > Cool. I just checked amazon-fireos and looks like there are no scripts > referring to cordova/something. So all is well. :) > > Thanks > Archana > > On 5/2/14 12:33 PM, "Mark Koudritsky" <[email protected]> wrote: > > >On Fri, May 2, 2014 at 3:12 PM, Naik, Archana <[email protected]> wrote: > > > >> Thanks Mark for sending this out. I just noticed these changes as I need > >> to fix something in amazon_fireos_parser.js. :) > >> > >> Question: re: code that does require('cordova/something') will break. > >> Platform scripts use 'cordova/something' and I guess we will have to > >>take > >> care of those. Is this change going in 3.5.0? > >> > > > >Hi Archana, > >Which platform scripts are you referring to? > >At least the scripts in cordova-ios and cordova-android don't seem to > >require() anything from within cordova. "cordova build" works ok for iOS > >and Android. > >All the code that lived in cordova-cli and cordova-plugman repos was > >updated. > > > >The only place where I saw this problem was in > >cca<https://github.com/kamrik/mobile-chrome-apps> where > >it does > >var platforms = require('cordova/platforms') > > > >This would need to be changed to > >var cordova_lib = require('cordova-lib'); > >var platforms = cordova_lib.cordova_platforms; > > > >Note that > >cordova_lib.cordova_platforms > >is a temporary shim, until we move to platforms list/object which will be > >common to plugman and ex cordova-cli code. > >
