Nicolas Froidure
Nicolas Froidure
I tried to install your module on my blog but the recursion seems to not work as expected: ``` git clone [email protected]:nfroidure/blog.git cd blog npm i npm run test:urls >...
fix #4697
We have charts with an Area showing min/max values that looks like this:  But due to the following condition: https://github.com/recharts/recharts/blob/bfd179194d77d6a46ba265681e9cad705ee56921/src/cartesian/Area.tsx#L669 Instead of just not print anything...
The build does not work well when importing a `constant` service, forcing to declare a service instead. See https://github.com/nfroidure/whook/blob/bf5fe31283d12f3996f0cc98874891a1e6ffeafa/packages/whook-example/src/services/CLOCK_MOCK.ts#L3-L17
Currently, each import of a file leads to a new line. Probably best to group imports for readability. It would also allow to detect duplicate imports.
Once the following issue is resolved: https://github.com/microsoft/TypeScript/issues/38511 🤞 We will be able to create types for module embedding an initializer. It could look like this: ```ts export type ServiceInitializerModule {...
Currently, the service is a constant (and is forced to be a constant) https://github.com/nfroidure/knifecycle/blob/main/src/index.ts#L283 The reason for it is that loading a service could lead to different results overtime which...
This project is very interesting (I wish I had more time to work on it). I do not use ORM and this approach could help me to reach more robustness....
See this [webhooks example](https://learn.openapis.org/examples/v3.1/webhook-example.html). ## To do: - [x] types generator support https://github.com/nfroidure/schema2dts/issues/38, - [x] check this works fine with webhooks: https://github.com/nfroidure/whook/blob/87fe576be7ebe32835ff7b45d8f0c2d145316e85/packages/whook/src/libs/openapi.ts#L23-L59 (especially when an endpoint uses webhooks schemas, how...
See this [callbacks example](https://learn.openapis.org/examples/v3.0/callback-example.html). ## To do: - [x] types generator support https://github.com/nfroidure/schema2dts/issues/39, - [x] check this works fine with callbacks: https://github.com/nfroidure/whook/blob/87fe576be7ebe32835ff7b45d8f0c2d145316e85/packages/whook/src/libs/openapi.ts#L23-L59, - [ ] think of the integration level:...