Tyler Waters

Results 50 comments of Tyler Waters

** looks closely ** Oh shoot, that component isn't accessible at all, is it.... I'll need to double check how it behaves tomorrow when I'm back at work. I think...

We've encountered this and worked around it with the following helper to manage client connections consistently - ```js async function withClient(pool, worker) { let client let clientReleased = false let...

It looks like @ratson didn't run the build command before publishing?

There is definitely a race condition here... I didn't realize that [async.auto wraps task completions in setImmediate](https://github.com/caolan/async/blob/master/lib/async.js#L569). Fortunately, sails-build-dictionary is synchronous, so it shouldn't be too hard to rework this...

Ah good call, I copied most of this from the [core sails module loader](https://github.com/balderdashy/sails/blob/43fefa7860c9fa4edc07f6afbef0e2a6c1bf000b/lib/hooks/moduleloader/index.js#L201-L270). I could see local.js being useful during development -- if, say, you symlink your module and...

When I tried to run the integration tests locally, the schema generation failed with "error: function gen_random_uuid() does not exist". I imagine this is using older versions of postgres? Honestly...

with react-router, I haven't seen any good solution yet. So, choose 2: - [ ] common chunks - [ ] code splitting - [ ] server-side rendering

OK, I think I've figured it out. I threw some "debug5" logs on the postgres server and set it to log any statement that gets emitted. It's doing a "create...

Maybe I'm missing something here, but rc12 is completely different to how the bundle looks from 1.0, and how it's consumed..... It goes from a "lib" directory with transpiled code...

I'm very surprised to see a lot of green on the `@page` page. The linked spec lists a lot of things that no browsers even come close to supporting --...