Ben Darlow
Ben Darlow
I've just bumped the version of `handlebars_assets` used in a Rails project, and noticed that it caused every single asset in the manifest.json to be invalidated, even though the overwhelming...
At Deliveroo we use puma-dev extensively for local development, and for historical reasons have configured `.dev` as our domain suffix for numerous separate projects. Now that `.dev` is a _real...
If a custom React component has an API with a prop called `sx`, that prop is ignored if the component is called alongside any other HTML element with an `sx`...
_[Supersedes #108. I’ve created a new PR based on a specific branch, since I unintentionally used `main` previously. This will let me continue to make other changes to my fork...
## Current Behavior When using lerna to automate publishing packages in a monorepo using `lerna version` it is seemingly not possible to automatically release version 1.0.0 for a new package...
Let’s say I have a component which accepts an optional Boolean prop: ```tsx export const MyComponent = ({ shouldDoSomething = undefined }: { shouldDoSomething?: boolean; }) => { return ({shouldDoSomething...