Daniel Mahon

Results 35 comments of Daniel Mahon

@johnpryan Is there a path forward here for `go_router_builder`? Just want to be sure whether the generated workflow will be included in the v5 rollout.

@chunhtai thanks for keeping this on the radar. FYI we are currently maintaining a fork of builder that supports passing the state to the route level redirects as well as...

Looks like [#2444](https://github.com/flutter/packages/pull/2444) should take care of what we need, plus the recent updates to include context in the redirect, and async support... you are all awesome, thank you!

same issue, runs twice using regular git hook or husky

Is there anywhere to obtain the "parent" binding context? I have tried pretty much every hook/method and can't find a way to access the context before the new bindings are...

Best way I've found so far is to wrap the `logger.child` method: ```ts const defaultChildMethod = logger.child; logger.child = function child(newBindings) { const { name } = this.bindings(); const newName...

@Kaisaurus @erquhart I've been working on a NetlifyCMS branch of my GraphCMS starter here, which uses Material-UI components, check it here: (warning, still in progress) https://github.com/danielmahon/gatsby-starter-procyon/tree/netlifycms Make sure you're on...

Current workaround by overriding the following: EDIT: This really isn't a workaround and heavily depends on what other packages you have installed. Overrides are hacky fixes and should be avoided....

@nicolasvergoz yeah, unfortunately, I have no idea, those classes probably don't exist in the specific dependency tree you are overriding... overrides are messy and should not be used if it...

@nodkz I'm trying to filter relations based on the above and not having any luck, see #96. Any suggestions? I notice my `wrapResolve` and `query` functions never run so I'm...