Jonas Finnemann Jensen
Jonas Finnemann Jensen
With nullability this would likely be useful. Also sometimes you want to force creation and not get a cached value. We could make it an extension or a new method...
Term.js is awesome... and well packaged. In fact it can already be used in browserify, if required as follows: ``` js // How to load term.js in a browserify environment...
This could explain why `gcloud app version stop ` takes in the range of 20 minutes for ~16 VMs. I'm not sure if this is done yet, from a quick...
Specifically: `gcloud_http.registerAuthClientService(client, close: true);` After migrating to ADC this line disappeared from setup, which means that the default `authClient` in `package:gcloud` is not authenticated anymore.
https://cloud.google.com/error-reporting/docs/formatting-error-messages#@type Mostly we just have to test this.. It might make error reporting work for severity other than `>= ERROR`. I'm not sure this is desirable, but then we could...
I'm not sure this is a good idea. But some clients will send `{method: '...', params: []}` when no parameters are given. So maybe it could be reasonable for the...
As I've come to understand it there is some special code handling resumable uploads in `googleapis` package... We should ensure that the same retry strategy is employed when doing non-resumable...
When running a Dart command like: * `dart pub get` * `dart pub publish` * `dart test` * `dart analyze` It'd be really nice if it's possible to do hook...
The default entry point for a pub package is `bin/.dart`, so if publishing a package that contains `bin/` (non-empty), we should give a warning if `bin/.dart` doesn't exist.
When looking for `sdk: flutter` sdk-packages today, we do: https://github.com/dart-lang/pub/blob/98565c3e5defcd80c59910795ba3548552102f2c/lib/src/sdk/flutter.dart#L81-L95 Effectively, we search for `` in (ordered by preferences): * `$FLUTTER_ROOT/packages/` * `$FLUTTER_ROOT/bin/cache/pkg/` Instead of having multiple search paths hardcoded...