Denis Khrunov

Results 11 comments of Denis Khrunov

08.05.2022 UPD: I noticed that when I run nx serve for a single MFE application, it starts production builds for all applications in my monorepo

> The second issue has a fix merged and released in Nx 14.5.3. > > If you migrate to latest using `nx migrate latest` you should get it. > >...

@Coly010 One clarification, during the migration I encountered a problem, my `tsconfig.base.ts` file did not allow me to migrate, then I used the workaround described [here](https://github.com/nrwl/nx/issues/11138#issuecomment-1198934086).

After updating to nx v14.5.4 I get this errors when try to start any MFE app. ![image](https://user-images.githubusercontent.com/25565058/183223643-f320c4ef-08c3-4291-9b03-ea6b773e9d27.png) But when I removed the folders: /dist, /node_modules and /tmp; Reinstalled all dependencies:...

> @dkhrunov Has your question been answered? I will try to test the solution you suggested soon

Same question! @costag1982 did you find a solution?

@costag1982 I'm found it ```typescript const query = gql.query( [ { operation: { name: 'getUser', alias: 'getAdminUser' }, variables: { id: 1 }, fields: ['id', 'name', 'role'] }, { operation:...

> However, if you modify the AutoMap Decorator in the Entity file as follows, it will work fine. > > ```tsx > @AutoMap(() => String) // @Column({ type: 'text', nullable:...

> For example, put in goBinary configuration > > { ... "goBinary": { "githubToken": "xxx" } ... } > > And then, you can use this token when requst the...