This is rad! Definitely a great example showing the JS API. I am thinking about also starting to publish our plugins to npm and add a flag to plugman install to fetch from npm instead of cordova plugins registry. Thoughts?
On Thu, Jan 8, 2015 at 1:09 PM, Mark Koudritsky <[email protected]> wrote: > On Thu, Jan 8, 2015 at 3:47 PM, Michal Mocny <[email protected]> wrote: > > > If we add node_modules to search path, will we be able to adjust which > > versions of platforms/plugins it uses just by modifying package.json? > > > > > Since platforms can be added by path. You can replace > platforms = ['android'] > with > platforms = ['/path/to/local/cordova-android'] // Should work for using > e.g. cordova-android 4.x > or > platforms = ['../node_modules/cordova-android'] > > > > Not sure if platforms use search path, or just plugins? Also not sure if > > we can install plugins from our registry using npm proper, but you can > use > > the git repos as a workaround if not. > > > > For plugins it's more tricky (other npm repo, different dependency model). > Some options are: > - use private cordova subsection in package.json and store plugin info > including versions there in whatever format we want >
