Raphael von der Grün

Results 129 comments of Raphael von der Grün

Thank you for creating this issue @asgoth . Actually I noticed this bug myself just a short while ago but forgot to create an issue. Then, I also did some...

Related: Using `yargs` as suggested in #311 would give us [auto-generated bash-completion](http://yargs.js.org/docs/#api-completioncmd-description-fn) too.

I did some profiling and about half of the time is spent by `require('insight')`. When you drill down a bit, you can see that the actual culprit that causes the...

Follow-up: `inquirer` already fixed the problem by only importing what they use from `rxjs`. But `insight` does still use an older version of `inquirer`. **Edit**: tested with the latest version...

Well the question in the title is answered. Should we close this or rename it to something more actionable?

Thanks for the links @dpogue! I think the reason while lazy loading did not bring any real benefits as it was being dropped is that you basically load almost everything...

I filed a PR in cordova-js that tries to improve the performance for big files as much as is possible with the current architecture. However, I think the only solid...

@LightMind First off: sorry for the late reply. > Writing to a file feels to me like something that should be atomic, if possible. Agreed. Maybe a `ChunkedFileWriter` would delete...

I could not reproduce that behavior with Cordova 9 using the following commands: ``` cordova create test-app && cd test-app cordova platform add browser # edit config.xml here cordova platform...

@Menardi I'm thinking of something like this: https://github.com/yargs/yargs/blob/master/docs/advanced.md#example-command-hierarchy-using-commanddir I will try to provide a *Motivation* section to this issue when I find the time.