Michael Webb

Results 12 comments of Michael Webb

I updated to 1.0 and changed included `lessOptions: {` as advised. This caused all .less files to stop loading. I removed the nested `lessOptions: {` object and it works fine....

Just wanted to confirm that my previous experience of it failing was due to my still using less-loader version `5.0.0`, just as @iwan-uschka described. After upgrading less-loader to the latest...

This update requires a Jest update to Jest 30 which will support Prettier v3 >

I noticed that I only ever see this problem when I loaded my component inside Suspense

@vkarpov15 Was there a particular reason you aren't using a type union? There is no error when using a union instead: ``` type A = { id: string } type...

> The types and methods are automatically generated from the OpenAPI spec. > > You can already get the types for a specific endpoint via `@octokit/types` > > ```ts >...

> It's the same. The endpoints have changed but not the method to get the types I am not sure what the cause of the problem is, but I'm experiencing...

> I can assure you that the types are still there, > > https://github.com/octokit/octokit.js/blob/0f148204943280e232ce1c12293194d5675d5ea3/package.json#L33 > > Have you updated your `tsconfig.json` as mentioned in the [Usage section of the README.md](https://github.com/octokit/octokit.js?tab=readme-ov-file#usage)?...

Hi @gethassaan I tried to reproduce this, but I can successfully request specific users via their IDs, without any issue. Some thoughts: - Did you create the users through GraphQL?...

Sure, here's what I did: ```ts import { ApolloServer } from "@apollo/server"; import { startStandaloneServer } from "@apollo/server/standalone"; import { Neo4jGraphQL } from "@neo4j/graphql"; import { OGM } from "@neo4j/graphql-ogm";...