Andrey Chalkin

Results 65 comments of Andrey Chalkin

I'm also facing the same issue with `--runInBand` and it seems like that node.js have fixed it in version 16.11.0, see my [GitHub Actions run](https://github.com/L2jLiga/fastify-decorators/actions/runs/1334609646). Workaround is to disable `runInBand`...

Hi there, Just published [v3.14.0](https://github.com/L2jLiga/fastify-decorators/releases/tag/v3.14.0). Could you check if issue solved for you now?

Fix released in [v4.0.0-next.3](https://github.com/L2jLiga/fastify-decorators/releases/tag/v4.0.0-next.3)

Released [v3.14.1](https://github.com/L2jLiga/fastify-decorators/releases/tag/v3.14.1) and [v4.0.0-next.4](https://github.com/L2jLiga/fastify-decorators/releases/tag/v4.0.0-next.4) with more fixes for inheritance. Closing now

> Again: Is it possible to mutate an object without reassigning it? Yes, but does not worth a cost =) [Example on TS Playground](https://www.typescriptlang.org/play?#code/KYDwDg9gTgLgBAYwDYEMDOa4EE4G8BQccA5gJYBuwAssAHLADuAClBGMLAJ4A8AKnKBjAAdgBNMWADRwWbASCFjMaGFFLDicALxwA5LoB8AChgALUmgBccXtLCsw12WACU19Gg4xMZi3D-8AGQypAgA1twASsAI0KLcKmoa0gBGEBBIwCjCBtLOBniERHAA9ABUcGgQALbAcEgQZAhwphx1ZSVFAL74PfixwipwKNY4OsKM2EYuANz4+CgAdGSUNPTMDl6cRrphwJy6s-MLi3ucc0uiAGbic0A)

Well yes, but no 😅 It does not mutate original class but mutates type of `a`, as well it doesn't work if type of `a` is not set explicitly Within...

Ok, I have an answer: Example *app.ts*: ```typescript import { doSomeJobWithApp } from './job.js'; export interface FastifyInstance { decorate( this: T, property: Prop, decorator: Decorator, ): asserts this is T...

Sorry, I didn't get what is actually wrong with `Array.prototype.sort` and how it can affect Terser😶

hmmm.. according to nodejs release cycle 6, 7, 9 and 11 alread EOL, node v8 one day left, I think we can drop node 6-9 support already but it really...