Leandro Aguiar
Leandro Aguiar
I'm trying to install PNPM in a Docker image with this (redacted) Dockerfile: ```dockerfile FROM node:16-alpine USER node:node ENV PNPM_VERSION=6.32.9 RUN wget -qO- https://get.pnpm.io/v6.16.js | node - add -g pnpm@${PNPM_VERSION}...
Hey there, I was checking out Alsatian and came across this using alsatian v3, nyc v15 and ts-node v8. Did anyone manage to get nyc's coverage reports to list all...
Hey, when I used to use Yarn v1, I really liked that they allowed configuring [CLI arguments through the `.yarnrc` file](https://classic.yarnpkg.com/lang/en/docs/yarnrc/#toc-cli-arguments). To set `--silent` only for `run` I could add...
So, I figured I could try to make a recursive version of `Overloads` in an effort to make it cover virtually any function: ```typescript type OverloadsRecursive = T extends {...
It seems that the root package got upgraded to the latest `google-auth-library` and `googleapis-common` versions in https://github.com/googleapis/google-api-nodejs-client/pull/2979, but the template for the sub-packages didn't.
@mbrowne this is the workaround I came up with to make `@bound` work with private fields: Actually only works for singletons 🤦 ```typescript export function bound any>(target: V, context: ClassMethodDecoratorContext):...
And a day later I realize it only works for singletons. 🤦
I'm seeing this problem while using PNPM `8.8.0` while deploying to Google App Engine with Node 20 runtime. I see no mention of the older Node version being activated by...