Jon

Results 20 comments of Jon

Hey @dsherret I think I made a progress with this. https://codesandbox.io/s/mystifying-faraday-2piybb?file=/src/index.ts:0-1044 I getting the members: ``` const members = Array.from((components!.getType().compilerType as any).members); ``` But how I getting the `ClassDeclaration` node?...

After I dig into source code I found esquery is getting the type of the node by access property, while in ts-morph is by function: `getKindName()`. ``` return function (node,...

@elite-benni I comprehend your point. Could you kindly publish a release? I'm eager to utilize this library, but my managers are hesitant because it's in alpha stage. They fail to...

@FrozenPandaz I am encountering the same issue where Nx fails to rebuild the package even when its library dependencies have changed. This poses a challenge for utilizing Nx with interconnected...

@SebasG22 you can vote in the @wizardnet972 post to promote the issue

Hi @wizardnet972, @NetanelBasal, @luii — just following up on this feature request. Is there any update on whether this enhancement can be considered or if a PR would be welcome?...

@luii , I've extended the example without using signals. The code remains the same: ```typescript remove = this.#add({ mutationFn: () => { return of({ data: { status: 500 } }).pipe(...

It appears that @tanstack/angular-query has a built-in mechanism to prevent errors from propagating. ```typescript allPosts$ = () => this.#http .get('https://jsonplaceholder.typicode.com/posts') .pipe( tap(() => { throw new Error('some'); }) ); ```...