Dave Tapley

Results 93 comments of Dave Tapley

So I _believe_ we're seeing this, albeit with a subscription and not a query. However the `fetchPolicy` is not working for us 😞 As a more general question: For a...

@Taar do you think v3 beta is stable enough to use in a production app? I'm about to start using and not sure whether to start with v2 or jump...

@Taar nice! I settled on this: ```ts export const isLengthUnit = (str: string): str is LengthUnits => !!convert() .possibilities("length") .find((s) => str === s); export const isVolumeFlowRateUnit = (str: string):...

I agree it `exclude` is correct in library's current state, but I'd argue it's not obvious that `nMi` should be in `imperial`, both from a practical and theoretical stand point:...

How about this: Leave `imperial` and `metric` as is (they will remain a set of all corresponding definitions), but: Create and create a new `us-common` system which includes all the...

These were the smoking guns for me: This `find` picks the first type which appears to match (even if multiple do): https://github.com/mobxjs/mobx-state-tree/blob/cf36cfeedc27d6a0877ccb8b8d3e64169924bcee/packages/mobx-state-tree/src/types/utility-types/union.ts#L108-L110 and, because `array` is _secretly_ `optional`, this will...

@jonkoops hmm, good point, I think that makes pushing to NPM a no go. But! I also just learned that NPM can take a [tarball URL](https://docs.npmjs.com/cli/v8/configuring-npm/package-json#urls-as-dependencies), so it might be...

I just want to throw out a big advantage of 2.0 will be: > new constructs that will allow for construction of declarative mappings in place which will support proper...

I tried ⤵️ ``` - name: Check out LFS objects run: GIT_TRACE=1 git lfs fetch -I dependencies.tar ``` And it hangs here ⤵️ ``` | 21:44:40.945015 trace git-lfs: exec: git...