Richard Honor

Results 10 comments of Richard Honor

This may not be completely exhaustive, and may not be 100% accurate, but it's a starting point: ```typescript declare module 'ping' { export interface PingConfig { /** * Map IP...

Would there be any sense to use negative dates, in the same method as reverse indexing lists in python? `0 12 -1 * *` Run on the last day of...

Any chance this could be looked at? @kamilkisiela @n1ru4l We've built this image to our own registry for now, but would be good to use an official one.

@andrew8er That code doesn't seem to resolve the issue.

> Hey! Thank you for the proposition. It seems a good idea, perhaps we just should have options enable/disable this metrics to allow users to avoid having too much data....

The `useSubscription` hook has been vastly improved in v3.11. While it doesn't offer out-of-the-box support for reconnecting, it is drastically simpler: ```typescript const useMySubscription = () => { const {...

I'm experiencing the same issue. I can add arbitrary classes to `additionalData`, but adding any imports breaks it. It also breaks the plugin for everything, not just files that make...

I've found a fix for the problem, and a potential improvement in either the code or the docs (or both!). This line sets up the alias imports: https://github.com/mrmckeb/typescript-plugin-css-modules/blob/4879b0418610eff871472ffa2cc592728d84d2be/src/helpers/getCssExports.ts#L117 It needs...

That was my first instinct as well, but the `RequestParams` type purely contains GQL information, and by exposing this on the `subscribe` call, it allows any sort of manipulation at...

Instead of importing `FetchResult` from `@apollo/client`, import `ExecutionResult` from `graphql`. ```typescript import { ApolloLink, Operation, Observable } from "@apollo/client/core"; import { ExecutionResult, print } from "graphql"; import { createClient, ClientOptions,...