Marc Knaup
Marc Knaup
@Benjozork that would be awesome 👍
Hello Daniil, there are no tests. Feel free to contribute some if you've got the time :)
@ben-manes `outputFormatter` defaults to `'plain'`. How would it get disabled accidentally? Alternatively an option to silence that info, or to reduce the log verbosity in general, would be nice.
`outputFormatter = null` still prints to stdout but because of the `return` it will skip printing to a file, which is the desired outcome.
Also useful for us. We use various own libraries and Gradle plugins whose dependencies are never checked when we run `dependencyUpdates` in one of the projects which use these libraries...
I'm using my own rough implementation for this to batch database updates. - The following approach creates batch of at most 100k updates and doesn't wait longer than 2 seconds...
@jxdabc you're right, `throttleFirst` is more appropriate for solving the problem. I'll update the issue.
I would've found this useful for diffing upstream values into downstream change events. ```kotlin datasets // DataSet1… DataSet2… DataSet3… DataSet… DataSet… .onStart { emit(DataSet.empty) } // DataSet.empty… DataSet1… DataSet2… DataSet3…...
Same issue here, with `@Prop`. ```ts import { RawLocation } from 'vue-router' // … @Prop() to?: RawLocation // warning: export 'RawLocation' was not found in 'vue-router' ``` I've worked around...
I just ran into the same issue. When a second instance of a component that uses `@ProvideReactive` is being created `TypeError: Cannot redefine property` is thrown. Downgrading to 8.2.2 fixes...