timtrinidad

Results 9 comments of timtrinidad

We're seeing this as well. In the meantime we've created a yarn script that runs `tsc --noEmit` before deploy.

tl;dr: Upgrade `serverless-webpack` **Background** I'm seeing this still with node 16.16 and serverless 3.21.0. When I unzip the packaged zips, I'm still seeing bad CRCs: ``` $ 7z l -slt...

Ah. In that case, I would do a `yarn why crc32-stream` or `npm ls crc32-stream` to see which package needs to be updated. AFAIK you need `crc32-stream@>=4.0.2` for `node@>15.6.0`

I ran into this issue today so I gave the PR a try. It's my first contrib to InversifyJS so let me know if there's something amiss!

I ran into this issue with `ts-jest` and `inversify`. After some debugging, I found that `tsc` transpiled the `@provides` or `@fluentProvide` decorators into the following ``` MysqlClient = MysqlClient_1 =...

Yes - this solution will only work if your tests do not rely on the decorators (e.g. unit tests)

@remojansen Just wanted to ping to see if there was anything else needed for this PR

@dcavanagh Hey Dan! Would something like this go through you now?

I can put together a PR for schemaview.py. I see that https://github.com/linkml/linkml-runtime/pull/300 made some initial optimizations - it's even slower without those optimizations. I'll start with a really naive update...