Miko

Results 43 comments of Miko
trafficstars

Thanks for the thoughtful response. > Are you talking about more for Real Time Database? Or more complex query capability for Firestore? Personally, I'm only interested in Firestore. > Also,...

> Was your focus on User data specifically or just collection data in general? I agree with what you said earlier, and user data can just be treated like another...

Had the same issue. I had to add ``` CFBundlePackageType APPL ``` to Info.plist. This thread was useful in helping me debug: https://developer.apple.com/forums/thread/130560

This solution is insufficient, if you scroll quickly, you can get past the blocked page - it seems pageSelected is called a bit slow. Trimming the pages up to the...

Any chance this can be merged?

Having the same issue. Any known workarounds? Here's a slightly simpler reproduction: ``` const compiler1 = new Compiler(); console.log(compiler1.parseSync("const a = 1", { syntax: "ecmascript" })); const compiler2 = new...

@kdy1 why is line-col needed? Can't \n just be consistently be used for line endings if it's a windows/unix EOL problem?

Right, I just don't see the immediate benefit to using line-col. I thought maybe because you wanted to be explicit about line endings. I use spans to get offsets and...

That was just a transcribing error. The problem happens despite the closing tag (actually I have it self-closing). @euvl

@adrianmcli @sntran I'm using the typescript compiler API and the rollup API in a script. Basically, like this: ` watchTs(); const watcher = rollup.watch(rollupConfig);` `watchTs` does a lot of boilerplate...