Chau Tran

Results 116 comments of Chau Tran

@Mistic92 yours is probably similar to https://github.com/nrwl/nx/issues/5820. @rishabh-husky Could you please provide a reproduce sample? I do the following: - `yarn create nx-workspace test-express --preset=express` - `cd test-express` - `yarn...

> The typings of effect (https://github.com/ngrx/platform/blob/13.1.0/modules/component-store/src/component-store.ts#L279) give the impression that void should be the default... I do not understand why we have to write explicitly effect. > Also the docs...

@webpro Just want to chime in here. I'm one of the core team members of Nx and also using Nx to develop my open source projects. `release-it` works fine for...

@webpro That...worked. I never thought about doing it that way. Cool *deleting my script* `package.json` and `package-lock.json` are reset because there might be other pipelines that depend on the cache...

@h3adache - [Angular Three](https://github.com/nartc/angular-three) sync versions. All packages share the same version - [Nartc Workspace](https://github.com/nartc/nartc-workspace) separate versions. Each package has their own version

Since this is webpack 5 related, I'm going to keep the issue open and will wait until AngularCLI officially supports Webpack5 before diving into this.

Can we close this issue? @ZhongYueHui

I have used Semantic Release before but I don't really like it. I want to have a bit of control of when to cut a new release and still have...

```ts type InstanceOrType = T extends abstract new (...args: unknown[]) => infer R ? R : T; type UiInteractions = { [K in keyof T]: (arg: InstanceOrType) => void; }...

@BioPhoton basically like `projections` for the Subject right? I think it is nice to have but it is not too big of a deal if we cannot have it. Typings...