Martnart

Results 6 comments of Martnart

I realized that with my initial implementation, even though `end` was marked deprecated it didn't actually account for the new matching paradigm, so I removed it altogether for now.

@bikeshedder I think it would be the most explicit way and I initially wanted to go that direction. In the end I didn't go with it because giving it a...

Is there any particular reason for holding back on this? Current iteration has the deficit of not being able to distinguish between all of the 3 possible match states. If...

Changing `SelectedFields` to a mapped type solves it: ``` type SelectedFields = { [K: string]: SelectedFieldsFlat[string] | TTable | SelectedFieldsFlat | SelectedFields }; ``` I don't know all the places...

> Are you sure it's including them in the final image and not just for the build step? Positive. I checked in the running container. `nixpacks plan` ``` { "providers":...

For anyone that finds themselves here looking for a solution. This is what I did as a workaround in my project: ```py # my_app/utils.py def alias_default_storage(*args): from django.core.files.storage import storages...