Richard Scarrott

Results 78 comments of Richard Scarrott

@trxcllnt yes I think it does actually 👍

Wow, I've spent months pondering why google search console flags so many of our SPA's pages as having poor CLS but lab data (lighthouse) and performance traces (Chrome dev tools)...

Hi @philipwalton thanks for the advice. I had a bit of a think about your last point re: hiding the content while it's loading and realised I had initially thought...

Hi @michaelsafyan Looks like I said I've **not** got a reduced test case unfortunately. We were using [`postgraphile`](https://github.com/graphile/postgraphile) at the time but I expect it'd be easier to test it...

@itamaro you describe the exact problem I'm having -- I'm experimenting with changing the build context of a service to be the root of the monorepo so I can copy...

@gartz tbh using `ExtractTextPlugin` in development is generally not recommended -- there's really no need and without it you get HMR for free -- https://github.com/webpack/extract-text-webpack-plugin/issues/30#issuecomment-107242576

Not 100% sure if you're experiencing the same issue but I did have a similar problem which was caused by a bug in [`chokidar`](https://github.com/webpack/webpack/issues/1920)

```ts const minmax = (minValue: number, maxValue: number = minValue) => err(and(min(minValue), max(maxValue)), `Expected number between ${minValue} and ${maxValue}`); ```

```ts const truthy = create(value => !!value)('Expected truthy value'); const falsy = create(value => !value)('Expected falsy value'); ```

```ts // `like` or `objectLike` or `looseObject` or `objectWith` or `objectContaining` const like = (validators) => object(validators, { allowUnknown: true }); ```