Sam Richard

Results 26 comments of Sam Richard

Rematch allows Redux to be extended with plugins that introduce "kinds" of reducers. This helps remove the boilerplate and conceptual overhead for more complex interactions. It also uses Typescript a...

I did a quick and dirty add of a partial update feature because its a pattern our APIs use a lot. I figured I'd chime in here and see if...

@rob-balfre You can definitely do that. Coming from css-in-js, sometimes you don't have a root style sheet or at least its existence doesn't persist in my mental model. I think...

I'm hitting this issue in my code ``` drf_writable_nested/mixins.py", line 122, in update_or_create_reverse_relations related_data = self.initial_data[field_name] ``` > MultiValueDictKeyError: "'offices'"   As @rainyx mentioned, this seems to happen with multipart...

I commented in #482 > To me, it seems like the more correct way might be to opt-in to the inheritance. > > ``` > env: > PATH: $PATH >...

@andreynering I want to set environment for all of my tasks. I’m not sure what you’re suggesting addresses my concern. I want to use the Shell’s environment. I also want...

I get away with: ```yaml build: vars: IMAGE_NAME: >- {{.IMAGE_NAME | default nil)}} IMAGE_TAG: >- {{.IMAGE_TAG | default nil}} preconditions: - sh: "[ {{.IMAGE_NAME}} ]" msg: "IMAGE_NAME not set" ```...

having `{{.VAR}}` at the file level will use the current value of .VAR in the context - `null`. Your subsequent task declarations will inherit that. `default` and `fail` are slim-sprig...

So, after looking at it again, you don't have short-circuit evaluations in templates - fail has to be a part of a block. You could use: ``` {{.VAR | default...

To me, it seems like the more correct way might be to opt-in to the inheritance. ``` env: PATH: $PATH ``` I think the closest parallel would be a Dockerfile,...