Jan Potoms

Results 281 comments of Jan Potoms

When doing this with the node `aws-sdk`, seems to be a `400 "InvalidArgument: Copy Source must mention the source bucket and key: sourcebucket/sourcekey"` And when you include a bucket `404...

oops, seems to be duplicate of https://github.com/maxogden/standard-format/issues/110

Another option could be to add a "show more..." button at the bottom of the 5 most recent branches, to increase the list with 5 more.

> We don't have plans to make this algorithm pluggable from the outside because we're concerned about the complexity this puts on the ecosystem and that components won't be reusable...

Not sure it may help you, but I've had some success with `react-query` and the following function, which is a variant of [this hack](https://github.com/microsoft/playwright/issues/2286#issuecomment-1442368623) made to work with `react-query`. ```tsx...

To avoid this from regressing again in the future, do you see an opportunity for adding an automated test that covers this behavior?

> does having [es5 as the TS target](https://github.com/mui/material-ui/blob/58831f0a1861337a7dddffe522cf3edbbeaf00d9/tsconfig.json#L4) make sense at this point? Isn't this only relevant if we're compiling to js with `tsc`? We use babel + preset-env, I...

> @Janpot Would you suggest making the change in the monorepo for every downstream package to take effect? Yes, I think hat makes sense. 👍

For me, the main difference between `.append` and a `join` function (like [`pg-template-tag`](https://www.npmjs.com/package/pg-template-tag) has) is mutability. `join` leaves the original query untouched, which leads to a program that is easier...

Maybe you could draw inspiration from [`pg-template-tag`](https://github.com/XeCycle/pg-template-tag/blob/master/src.js)? This one allows nesting. Also the immutable nature makes it feel more like working with a string, which comes more natural to me.