Raphael von der Grün
Raphael von der Grün
Possible resource to link to: https://docs.npmjs.com/downloading-and-installing-node-js-and-npm
@mathiasscheffe Good points about the error messages. I think having separate messages should be fine then. > Do you have any suggestions on how to hook into the functionality? This...
Another important point that should be considered is the following: I see the appeal of alert during development, so you notice your mistake ASAP. But under no circumstances should Cordova...
Good catch! However, I think we might have to handle truthy non-string arguments as well. `window.addEventListener(1, () => {})` does not throw an error either (tested in Chrome). Unfortunately, I...
I already have a running proof-of-concept. Will create a PR as soon as I find the time.
> TODO: Check if the actual library code here is used in Cordova somewhere else. This repository contains _only_ the CLI of plugman. All actual functionality is implemented in [cordova-lib/src/plugman](https://github.com/apache/cordova-lib/tree/master/src/plugman)....
Yup, I've been doing that as I go. I just haven't felt it was important enough to be tackled just for the sake of it. Consider that it will create...
> Any function that returns a promise should never throw. It should reject the promise. To clarify: It's OK if `throw` statements are used in `async` functions or inside `Promise`...
Could you please check if passing the option `save: true` solves your issue? ```js await cordova.plugin('add', 'cordova-plugin-device', { save: true }); await cordova.plugin('add', 'cordova-plugin-androidx-adapter', { save: true }); await cordova.platform('add',...
Yes, there's a few (probably outdated) templates in the `plugman` dir in `cordova-lib` that determine the platforms that support this operation.